fontBodySmall static method

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

Implementation

static TextStyle fontBodySmall({Color? color}) => TextStyle(
  fontFamily: 'Sarabun-Regular',
  fontWeight: FontWeight.w400,
  fontSize: 12,
  height: 1.3333, // 16 / 12
  color: color ?? _defaultColor,
);