data property

InputDecorationThemeData get data

The properties used for all descendant TabBar widgets.

Implementation

InputDecorationThemeData get data =>
    _data ??
    InputDecorationThemeData(
      labelStyle: _labelStyle,
      floatingLabelStyle: _floatingLabelStyle,
      helperStyle: _helperStyle,
      helperMaxLines: _helperMaxLines,
      hintStyle: _hintStyle,
      hintFadeDuration: _hintFadeDuration,
      hintMaxLines: _hintMaxLines,
      errorStyle: _errorStyle,
      errorMaxLines: _errorMaxLines,
      floatingLabelBehavior: _floatingLabelBehavior,
      floatingLabelAlignment: _floatingLabelAlignment,
      isDense: _isDense,
      contentPadding: _contentPadding,
      isCollapsed: _isCollapsed,
      iconColor: _iconColor,
      prefixStyle: _prefixStyle,
      prefixIconColor: _prefixIconColor,
      prefixIconConstraints: _prefixIconConstraints,
      suffixStyle: _suffixStyle,
      suffixIconColor: _suffixIconColor,
      suffixIconConstraints: _suffixIconConstraints,
      counterStyle: _counterStyle,
      filled: _filled,
      fillColor: _fillColor,
      activeIndicatorBorder: _activeIndicatorBorder,
      outlineBorder: _outlineBorder,
      focusColor: _focusColor,
      hoverColor: _hoverColor,
      errorBorder: _errorBorder,
      focusedBorder: _focusedBorder,
      focusedErrorBorder: _focusedErrorBorder,
      disabledBorder: _disabledBorder,
      enabledBorder: _enabledBorder,
      border: _border,
      alignLabelWithHint: _alignLabelWithHint,
      constraints: _constraints,
      visualDensity: _visualDensity,
    );