statement static method

TextStyle statement({
  1. Variants? variant,
  2. Color? color,
  3. double? fontSize,
})

Returns the statement text style.

Implementation

static TextStyle statement({
  Variants? variant,
  Color? color,
  double? fontSize,
}) =>
    TextStyle(
      fontSize: fontSize ?? 116,
      fontWeight: FontWeight.w500,
      fontFamily: 'Helvetica Neue',
      color: color,
    );