s16w400 static method

TextStyle s16w400({
  1. Color? color,
  2. double? height,
  3. String? fontFamily = '',
  4. TextOverflow? overflow,
  5. TextDecoration? decoration,
  6. 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,
  );
}