BottomSheetLibrary constructor

BottomSheetLibrary(
  1. LibraryComponentHandle component, {
  2. Map<String, Object?>? params,
  3. bool enableDrag = true,
  4. bool nonDismissible = false,
})

Implementation

BottomSheetLibrary(
  this.component, {
  Map<String, Object?>? params,
  this.enableDrag = true,
  this.nonDismissible = false,
}) : params = params == null ? const {} : Map.unmodifiable(params);