AppzStateStyle constructor

const AppzStateStyle({
  1. required Color borderColor,
  2. double borderWidth = 1.0,
  3. required double borderRadius,
  4. required Color backgroundColor,
  5. required Color textColor,
  6. required Color labelColor,
  7. required String fontFamily,
  8. required double fontSize,
  9. required double labelFontSize,
  10. required double paddingHorizontal,
  11. required double paddingVertical,
})

Implementation

const AppzStateStyle({
  required this.borderColor,
  this.borderWidth = 1.0,
  required this.borderRadius,
  required this.backgroundColor,
  required this.textColor,
  required this.labelColor,
  required this.fontFamily,
  required this.fontSize,
  required this.labelFontSize,
  required this.paddingHorizontal,
  required this.paddingVertical,
});