GroupBox constructor
const
GroupBox({
- Key? key,
- String? title,
- required Widget child,
- EdgeInsets margin = const EdgeInsets.all(8.0),
- EdgeInsets padding = const EdgeInsets.all(8.0),
- TextStyle? titleTextStyle,
- Color? titleTextColor,
- Color? borderColor,
- Color? backgroundColor,
Implementation
const GroupBox({
super.key,
this.title,
required this.child,
this.margin = const EdgeInsets.all(8.0),
this.padding = const EdgeInsets.all(8.0),
this.titleTextStyle,
this.titleTextColor,
this.borderColor,
this.backgroundColor,
});