openCameraPhotoOnly static method

Future<String?> openCameraPhotoOnly(
  1. BuildContext context
)

Convenience helper: Open the camera without gallery access (photo-only flow).

Implementation

static Future<String?> openCameraPhotoOnly(BuildContext context) {
  return openCamera(context, allowGallery: false);
}