s7w400 method

Text s7w400({
  1. Color? color,
  2. TextStyle? style,
  3. int? maxLines,
  4. double height = 1,
  5. TextOverflow? overflow,
  6. TextAlign? textAlign,
  7. String fontFamily = 'Roboto',
})

Implementation

Text s7w400(
    {Color? color,
      TextStyle? style,
      int? maxLines,
      double height = 1,
      TextOverflow? overflow,
      TextAlign? textAlign, String fontFamily = 'Roboto'}) {
  return Text(
    this,
    maxLines: maxLines,
    overflow: overflow,
    textAlign: textAlign,
    style: TextStyle(fontSize: 7, fontWeight: FontWeight.w400, color: color, fontFamily: fontFamily, height: height)
        .merge(style),
  );
}