BoardStyle constructor
BoardStyle({
- bool divider = true,
- EdgeInsetsGeometry inputsMargin = const EdgeInsets.all(5),
- EdgeInsetsGeometry inputsPadding = const EdgeInsets.all(5),
- Color? inputsColor,
- EdgeInsetsGeometry buttonsMargin = const EdgeInsets.all(5),
- EdgeInsetsGeometry buttonsPadding = const EdgeInsets.all(5),
- Color? buttonsColor,
- EdgeInsetsGeometry generalMargin = const EdgeInsets.all(5),
- EdgeInsetsGeometry generalPadding = const EdgeInsets.all(5),
- Color? generalColor,
- Radius? generalRadius,
- double? generalBorderWidth,
- 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,
});