regularTextStyle function

TextStyle regularTextStyle({
  1. double? fontSize,
  2. String? fontFamily,
  3. Color? color,
  4. double? height,
  5. Color? backgroundColor,
})

Implementation

TextStyle regularTextStyle(
        {double? fontSize,
        String? fontFamily,
        Color? color,
        double? height,
        Color? backgroundColor}) =>
    TextStyle(
        fontFamily: fontFamily ?? null,
        fontWeight: FontWeight.w300,
        fontSize: fontSize ?? 14.0,
        color: color ?? null,
        backgroundColor: backgroundColor ?? null,
        height: height ?? null);