hintStyle property

TextStyle? get hintStyle

Implementation

TextStyle? get hintStyle {
  return _hintStyle?.copyWith(
        color: textColor,
        fontSize: textSize,
        fontWeight: textFontWeight,
        decoration: textDecoration,
        decorationColor: textDecorationColor,
        decorationStyle: textDecorationStyle,
        decorationThickness: textDecorationThickness,
        fontFamily: textFontFamily,
        fontStyle: textFontStyle,
        leadingDistribution: textLeadingDistribution,
        letterSpacing: letterSpacing,
        wordSpacing: wordSpacing,
      ) ??
      textStyle;
}
set hintStyle (TextStyle? value)

Implementation

set hintStyle(TextStyle? value) => _hintStyle = value;