fontTitleLarge static method

TextStyle fontTitleLarge({
  1. Color? color,
})

Implementation

static TextStyle fontTitleLarge({Color? color}) => TextStyle(
  fontFamily: 'Anuphan-Regular',
  fontWeight: FontWeight.w400,
  fontSize: 22,
  height: 1.1818, // 26 / 22
  color: color ?? _defaultColor,
);