bodyLarge static method
Implementation
static TextStyle bodyLarge({Color? color, FontWeight? fontWeight}) {
return TextStyle(
fontSize: 16.sp,
fontWeight: fontWeight ?? FontWeight.normal,
color: color,
height: 1.5,
);
}
static TextStyle bodyLarge({Color? color, FontWeight? fontWeight}) {
return TextStyle(
fontSize: 16.sp,
fontWeight: fontWeight ?? FontWeight.normal,
color: color,
height: 1.5,
);
}