FreeStyleSettings constructor

const FreeStyleSettings({
  1. FreeStyleMode mode = FreeStyleMode.none,
  2. Color color = Colors.black,
  3. double strokeWidth = 1,
})

Creates a FreeStyleSettings with the given color and strokeWidth and mode values.

Implementation

const FreeStyleSettings({
  this.mode = FreeStyleMode.none,
  this.color = Colors.black,
  this.strokeWidth = 1,
});