m3BodyLarge static method

TextStyle m3BodyLarge(
  1. {required Color color}
)

Implementation

static TextStyle m3BodyLarge({
  required Color color,
}) {
  return TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w400,
    height: 0,
    letterSpacing: 0.5,
    color: color,
  );
}