fontTitleSmall static method

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

Implementation

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