BoardStyle constructor

BoardStyle({
  1. bool divider = true,
  2. EdgeInsetsGeometry inputsMargin = const EdgeInsets.all(5),
  3. EdgeInsetsGeometry inputsPadding = const EdgeInsets.all(5),
  4. Color? inputsColor,
  5. EdgeInsetsGeometry buttonsMargin = const EdgeInsets.all(5),
  6. EdgeInsetsGeometry buttonsPadding = const EdgeInsets.all(5),
  7. Color? buttonsColor,
  8. EdgeInsetsGeometry generalMargin = const EdgeInsets.all(5),
  9. EdgeInsetsGeometry generalPadding = const EdgeInsets.all(5),
  10. Color? generalColor,
  11. Radius? generalRadius,
  12. double? generalBorderWidth,
  13. Color? generalBorderColor,
})

Implementation

BoardStyle({
  this.divider          = true,
  this.inputsMargin     = const EdgeInsets.all(5),
  this.inputsPadding    = const EdgeInsets.all(5),
  this.inputsColor,
  this.buttonsMargin    = const EdgeInsets.all(5),
  this.buttonsPadding   = const EdgeInsets.all(5),
  this.buttonsColor,
  this.generalMargin    = const EdgeInsets.all(5),
  this.generalPadding   = const EdgeInsets.all(5),
  this.generalColor,
  this.generalRadius,
  this.generalBorderWidth,
  this.generalBorderColor,
});