textStyle property

TextStyle get textStyle

Gets the TextStyle for inputDecoration and TextField.

Implementation

TextStyle get textStyle {
  return TextStyle(
      color: textColorOverride ?? AppThemeAccess.theme.defaultTextColor,
      fontSize: textSizeOverride ?? AppThemeAccess.theme.defaultFontSize);
}