data property

TabBarThemeData get data

The properties used for all descendant TabBar widgets.

Implementation

TabBarThemeData get data =>
    _data ??
    TabBarThemeData(
      indicator: _indicator,
      indicatorColor: _indicatorColor,
      indicatorSize: _indicatorSize,
      dividerColor: _dividerColor,
      dividerHeight: _dividerHeight,
      labelColor: _labelColor,
      labelPadding: _labelPadding,
      labelStyle: _labelStyle,
      unselectedLabelColor: _unselectedLabelColor,
      unselectedLabelStyle: _unselectedLabelStyle,
      overlayColor: _overlayColor,
      splashFactory: _splashFactory,
      mouseCursor: _mouseCursor,
      tabAlignment: _tabAlignment,
      textScaler: _textScaler,
      indicatorAnimation: _indicatorAnimation,
    );