errorTextStyle property

TextStyle? get errorTextStyle

Implementation

TextStyle? get errorTextStyle {
  return errorTextStyleState?.fromController(this) ??
      _errorTextStyle ??
      helperTextStyle?.copyWith(color: errorTextColor);
}
set errorTextStyle (TextStyle? value)

Implementation

set errorTextStyle(TextStyle? value) => _errorTextStyle = value;