FxBottomSheetShell<T> constructor

FxBottomSheetShell<T>({
  1. Key? key,
  2. required FxOverlayType type,
  3. required FxOverlayOptions<T> options,
  4. bool useSafeArea = true,
  5. ScrollController? scrollController,
  6. DraggableScrollableController? sheetController,
  7. FxBottomSheetOptions? bottomSheetOptions,
})

Implementation

FxBottomSheetShell({
  super.key,
  required this.type,
  required this.options,
  this.useSafeArea = true,
  this.scrollController,
  this.sheetController,
  this.bottomSheetOptions,
});