ContainerBottomSheet constructor

const ContainerBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets padding = const EdgeInsets.fromLTRB(16, 24, 16, 16),
  4. bool showCloseButton = false,
  5. dynamic actionDismiss()?,
})

Implementation

const ContainerBottomSheet({
  super.key,
  required this.child,
  this.padding = const EdgeInsets.fromLTRB(16, 24, 16, 16),
  this.showCloseButton = false,
  this.actionDismiss,
});