BottomExpandableAppBar constructor

BottomExpandableAppBar({
  1. Key? key,
  2. Widget? expandedBody,
  3. double horizontalMargin = 16,
  4. double bottomOffset = 10,
  5. NotchedShape? shape,
  6. double? expandedHeight = 150,
  7. double appBarHeight = 50,
  8. Side attachSide = Side.Bottom,
  9. BoxConstraints? constraints,
  10. Color? bottomAppBarColor,
  11. Decoration? appBarDecoration,
  12. Widget? bottomAppBarBody,
  13. Color? expandedBackColor,
  14. Decoration? expandedDecoration,
  15. BottomBarController? controller,
  16. bool useMax = false,
})

Implementation

BottomExpandableAppBar({
  Key? key,
  this.expandedBody,
  this.horizontalMargin: 16,
  this.bottomOffset: 10,
  this.shape,
  this.expandedHeight: 150,
  this.appBarHeight: 50,
  this.attachSide: Side.Bottom,
  this.constraints,
  this.bottomAppBarColor,
  this.appBarDecoration,
  this.bottomAppBarBody,
  this.expandedBackColor,
  this.expandedDecoration,
  this.controller,
  this.useMax: false,
})  : assert(!(expandedBackColor != null && expandedDecoration != null)),
      super(key: key);