openCameraPhotoOnly static method
Convenience helper: Open the camera without gallery access (photo-only flow).
Implementation
static Future<String?> openCameraPhotoOnly(BuildContext context) {
return openCamera(context, allowGallery: false);
}
Convenience helper: Open the camera without gallery access (photo-only flow).
static Future<String?> openCameraPhotoOnly(BuildContext context) {
return openCamera(context, allowGallery: false);
}