showImagePicker static method
Future<List<FileData> >
showImagePicker({
- required UImageSource source,
- bool allowMultiple = false,
- bool isSelfie = false,
- int? imageQuality,
- UCropOptions? crop,
- dynamic action()?,
Backwards-compatible image picker. Delegates to pickImage (camera capture uses the in-app UCameraPage; gallery uses the file picker).
Implementation
static Future<List<FileData>> showImagePicker({
required UImageSource source,
bool allowMultiple = false,
bool isSelfie = false,
int? imageQuality,
UCropOptions? crop,
Function(List<FileData>)? action,
}) => pickImage(source: source, selfie: isSelfie, allowMultiple: allowMultiple, imageQuality: imageQuality, crop: crop, action: action);