hint static method

TextStyle hint({
  1. String? fontFamily,
  2. double? fontSize,
  3. double? letterSpacing,
  4. FontWeight? fontWeight,
  5. Color? color,
})

Implementation

static TextStyle hint(
    {String? fontFamily,
    double? fontSize,
    double? letterSpacing,
    FontWeight? fontWeight,
    Color? color}) {
  return const TextStyle().custom(
      fontFamily ?? fontDefault,
      fontSize ?? 12,
      letterSpacing ?? 0.25,
      fontWeight ?? FontWeight.w200,
      color ?? colorText);
}