BottomAppBarTheme constructor

const BottomAppBarTheme(
  1. {Color? color,
  2. double? elevation,
  3. NotchedShape? shape,
  4. double? height,
  5. Color? surfaceTintColor,
  6. Color? shadowColor,
  7. EdgeInsetsGeometry? padding}
)

Creates a theme that can be used for ThemeData.bottomAppBarTheme.

Implementation

const BottomAppBarTheme({
  this.color,
  this.elevation,
  this.shape,
  this.height,
  this.surfaceTintColor,
  this.shadowColor,
  this.padding,
});