takePhotos static method
Future<List<FileData> >
takePhotos({
- int maxCount = 0,
- bool selfie = false,
- UCropOptions? crop,
- UCameraOptions? options,
- dynamic action()?,
Captures multiple photos in one camera session. maxCount 0 means unlimited.
Implementation
static Future<List<FileData>> takePhotos({
int maxCount = 0,
bool selfie = false,
UCropOptions? crop,
UCameraOptions? options,
Function(List<FileData>)? action,
}) => pickImage(source: UImageSource.camera, selfie: selfie, allowMultiple: true, maxCount: maxCount, crop: crop, cameraOptions: options, action: action);