Created
May 16, 2022 13:33
-
-
Save serpicokhan/c3e65a1a4703abbf4501326e48699c05 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var paint = Paint(); | |
paint.color = Colors.black; | |
paint.strokeCap = StrokeCap.round; | |
paint.strokeWidth = 5.0; | |
//above block of code when optimized | |
var paint = Paint() | |
..color = Colors.black | |
..strokeCap = StrokeCap.round | |
..strokeWidth = 5.0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment