ModalSheet constructor

const ModalSheet({
  1. Key? key,
  2. required Widget child,
  3. bool isDark = false,
  4. double topPadding = 20.0,
  5. EdgeInsets? padding,
  6. double? height,
})

Implementation

const ModalSheet({
  Key? key,
  required this.child,
  this.isDark = false,
  this.topPadding = 20.0,
  this.padding,
  this.height,
}) : super(key: key);