pickBoth method

Future<SelectedImagesDetails?> pickBoth({
  1. required ImageSource source,
  2. GalleryDisplaySettings? galleryDisplaySettings,
  3. bool multiSelection = false,
})

Implementation

Future<SelectedImagesDetails?> pickBoth({
  required ImageSource source,
  GalleryDisplaySettings? galleryDisplaySettings,
  bool multiSelection = false,
}) async {
  return _pushToCustomPicker(
    galleryDisplaySettings: galleryDisplaySettings,
    multiSelection: multiSelection,
    pickerSource: PickerSource.both,
    source: source,
  );
}