EBTextStyle constructor

const EBTextStyle({
  1. Color? color,
  2. double? fontSize,
  3. FontWeight? fontWeight,
  4. String? fontFamily,
  5. int? maxLines,
  6. TextOverflow? textOverflow,
})

Implementation

const EBTextStyle({
  super.color,
  super.fontSize,
  super.fontWeight,
  super.fontFamily,
  super.maxLines,
  super.textOverflow,
});