Skip to content

Instantly share code, notes, and snippets.

@serpicokhan
Created May 16, 2022 13:33
Show Gist options
  • Save serpicokhan/c3e65a1a4703abbf4501326e48699c05 to your computer and use it in GitHub Desktop.
Save serpicokhan/c3e65a1a4703abbf4501326e48699c05 to your computer and use it in GitHub Desktop.
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