Block constructor
const
Block({ - Key? key,
- String? title,
- TextStyle? titleStyle,
- bool highlight = false,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- bool? expanded,
- EdgeInsets padding = defaultPadding,
- EdgeInsets margin = defaultMargin,
- List<Widget> children = const [],
- List<Widget> overlay = const [],
- Color? background,
- String? headline,
- 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,
});