Block constructor

Block({
  1. Key? key,
  2. double width = 80.0,
  3. double height = 80.0,
  4. String title = "",
  5. Color color = Colors.blueAccent,
})

Implementation

Block(
    {Key? key,
    this.width = 80.0,
    this.height = 80.0,
    this.title = "",
    this.color = Colors.blueAccent})
    : super(key: key);