GroupBox constructor

const GroupBox({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. EdgeInsets margin = const EdgeInsets.all(8.0),
  5. EdgeInsets padding = const EdgeInsets.all(8.0),
  6. TextStyle? titleTextStyle,
  7. Color? titleTextColor,
  8. Color? borderColor,
  9. Color? backgroundColor,
})

Implementation

const GroupBox({
  super.key,
  required 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,
});