OpenCustomSheet constructor

const OpenCustomSheet({
  1. Key? key,
  2. bool barrierDismissible = true,
  3. Color? barrierColor,
  4. String? barrierLabel,
  5. Function? onClose,
  6. required Widget body({
    1. ScrollController? scrollController,
    }),
  7. bool? expand,
  8. double? initialChildSize,
  9. double? minChildSize,
  10. double? maxChildSize,
  11. bool? scrollable,
})

Implementation

const OpenCustomSheet({
  super.key,
  this.barrierDismissible = true,
  this.barrierColor,
  this.barrierLabel,
  this.onClose,
  required this.body,
  this.expand,
  this.initialChildSize,
  this.minChildSize,
  this.maxChildSize,
  this.scrollable,
});