fontBodySmallProminent static method

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

Implementation

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