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