data property

BottomAppBarThemeData get data

The properties used for all descendant BottomAppBar widgets.

Implementation

BottomAppBarThemeData get data =>
    _data ??
    BottomAppBarThemeData(
      color: _color,
      elevation: _elevation,
      shape: _shape,
      height: _height,
      surfaceTintColor: _surfaceTintColor,
      shadowColor: _shadowColor,
      padding: _padding,
    );