Block constructor

Block({
  1. Key? key,
  2. double width = 80.0,
  3. double height = 80.0,
  4. String title = "",
  5. Color color = Colors.blueAccent,
  6. TextStyle titleStyle = const TextStyle(color: Colors.black, fontStyle: FontStyle.normal),
})

Implementation

Block({
  Key? key,
  this.width = 80.0,
  this.height = 80.0,
  this.title = "",
  this.color = Colors.blueAccent,
  this.titleStyle =
      const TextStyle(color: Colors.black, fontStyle: FontStyle.normal),
}) : super(key: key);