DrawDiamond constructor

DrawDiamond({
  1. Color backgroundColor = Colors.black,
})

Implementation

DrawDiamond({this.backgroundColor = Colors.black}) {
  painter = Paint()
    ..color = this.backgroundColor
    ..style = PaintingStyle.fill;
}