fontBodyLarge static method

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

Implementation

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