EBBaseStyle constructor

const EBBaseStyle({
  1. Color? color,
  2. Color? backgroundColor,
  3. double? fontSize,
  4. FontWeight? fontWeight,
  5. FontStyle? fontStyle,
  6. double? letterSpacing,
  7. double? wordSpacing,
  8. double? height,
  9. String? fontFamily,
  10. TextOverflow? overflow,
  11. TextAlign? textAlign,
  12. bool? softWrap,
  13. int? maxLines,
  14. Color? borderColor,
  15. double? borderWidth,
  16. double? borderRadius,
  17. WidgetStateProperty<Size?>? minimumSize,
  18. WidgetStateProperty<Size?>? fixedSize,
  19. WidgetStateProperty<Size?>? maximumSize,
  20. ObjectFit? objectFit,
})

Implementation

const EBBaseStyle({
  this.color,
  this.backgroundColor,
  this.fontSize,
  this.fontWeight,
  this.fontStyle,
  this.letterSpacing,
  this.wordSpacing,
  this.height,
  this.fontFamily,
  this.overflow,
  this.textAlign,
  this.softWrap,
  this.maxLines,
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
  this.minimumSize,
  this.fixedSize,
  this.maximumSize,
  this.objectFit,
});