FABBottomAppBar constructor

FABBottomAppBar({
  1. List<FABBottomAppBarItem>? items,
  2. String? centerItemText,
  3. double? height = 60.0,
  4. double? iconSize = 24.0,
  5. Color? backgroundColor,
  6. Color? inActiveColor,
  7. Color? activeColor,
  8. NotchedShape? notchedShape,
  9. ValueChanged<int>? onTabSelected,
  10. bool centerSelected = false,
})

Implementation

FABBottomAppBar({
  this.items,
  this.centerItemText,
  this.height: 60.0,
  this.iconSize: 24.0,
  this.backgroundColor,
  this.inActiveColor,
  this.activeColor,
  this.notchedShape,
  this.onTabSelected,
  this.centerSelected = false,
}) {
  assert(this.items!.length % 2 == 0);
}