BottomBar constructor

const BottomBar({
  1. Key? key,
  2. required DeviceOrientation orientation,
  3. required bool busy,
  4. required VoidCallback onShoot,
  5. required VoidCallback onGallery,
  6. required VoidCallback onSwitchCam,
  7. bool allowGallery = true,
})

Implementation

const BottomBar({
  super.key,
  required this.orientation,
  required this.busy,
  required this.onShoot,
  required this.onGallery,
  required this.onSwitchCam,
  this.allowGallery = true,
});