s16w400 static method
TextStyle
s16w400({
- Color? color,
- double? height,
- String? fontFamily = '',
- TextOverflow? overflow,
- TextDecoration? decoration,
- Color? backgroundColor,
Implementation
static TextStyle s16w400({
Color? color,
double? height,
String? fontFamily = '',
TextOverflow? overflow,
TextDecoration? decoration,
Color? backgroundColor,
}) {
return TextStyle(
fontSize: 16.sp,
fontWeight: FontWeight.w400,
color: color ?? AppColor.blackColor,
height: height,
fontFamily: fontFamily,
overflow: overflow,
decoration: decoration,
backgroundColor: backgroundColor,
);
}