BrushColor constructor

const BrushColor({
  1. required Color color,
  2. Color background = Colors.black,
})

Implementation

const BrushColor({
  required this.color,
  this.background = Colors.black,
});