DrawRhombus constructor

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

Implementation

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