ModalBottomSheet constructor

const ModalBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. Widget? startDecorator,
  4. Widget? titleDecorator,
  5. Widget? endDecorator,
  6. Color? backgroundColor,
})

Implementation

const ModalBottomSheet({
  Key? key,
  required this.child,
  this.startDecorator,
  this.titleDecorator,
  this.endDecorator,
  this.backgroundColor,
}) : super(key: key);