Controller constructor
Controller({})
Implementation
Controller({
double strokeWidth = 4.0,
Color color = Colors.red,
PaintMode mode = PaintMode.freeStyle,
String text = '',
bool fill = false,
}) {
_strokeWidth = strokeWidth;
_color = color;
_mode = mode;
_text = text;
_fill = fill;
}