XBottomAppBarConfig constructor

XBottomAppBarConfig({
  1. Color? bottomAppBarColor,
  2. double? bottomAppBarHeight,
  3. bool? bottomAppBarHeightAuto,
  4. List<BoxShadow>? boxShadow,
})

Implementation

XBottomAppBarConfig({
  this.bottomAppBarColor,
  this.bottomAppBarHeight,
  this.bottomAppBarHeightAuto,
  this.boxShadow,
}) {
  bottomAppBarColor = this.bottomAppBarColor ?? Colors.white;
  bottomAppBarHeight = this.bottomAppBarHeight ?? 0.0;
  bottomAppBarHeightAuto = this.bottomAppBarHeightAuto ?? false;
}