counterTextStyle property

TextStyle? get counterTextStyle

Implementation

TextStyle? get counterTextStyle {
  return counterTextStyleState?.fromController(this) ??
      _counterTextStyle ??
      helperTextStyle?.copyWith(
        color: hasError ? errorTextColor : counterTextColor,
      );
}
set counterTextStyle (TextStyle? value)

Implementation

set counterTextStyle(TextStyle? value) => _counterTextStyle = value;