Block constructor

const Block({
  1. Key? key,
  2. String? title,
  3. TextStyle? titleStyle,
  4. bool highlight = false,
  5. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  6. bool? expanded,
  7. EdgeInsets padding = defaultPadding,
  8. EdgeInsets margin = defaultMargin,
  9. List<Widget> children = const [],
  10. List<Widget> overlay = const [],
  11. Color? background,
  12. String? headline,
  13. double maxWidth = 400,
})

Implementation

const Block({
  super.key,
  this.title,
  this.titleStyle,
  this.highlight = false,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.expanded,
  this.padding = defaultPadding,
  this.margin = defaultMargin,
  this.children = const [],
  this.overlay = const [],
  this.background,
  this.headline,
  this.maxWidth = 400,
});