PlatformBottomBar constructor

const PlatformBottomBar({
  1. Key? key,
  2. required Widget child,
  3. double materialElevation = 8.0,
  4. bool cupertinoBlurBackground = false,
  5. double cupertinoBackgroundOpacity = 1.0,
})

Implementation

const PlatformBottomBar(
    {Key? key,
    required this.child,
    this.materialElevation = 8.0,
    this.cupertinoBlurBackground = false,
    this.cupertinoBackgroundOpacity = 1.0})
    : super(key: key);