show method

Future<List<int>?> show({
  1. BottomSheetOptions? options,
})

Implementation

Future<List<int>?> show({BottomSheetOptions? options}) =>
    popupBottomSheet<List<int>?>(
        options: GlobalOptions()
            .bottomSheetOptions
            .copyWith(isScrollControlled: false)
            .merge(options));