camera property

Permission get camera

Creates a camera permission with no custom name or description

This creates a Permission instance for camera access without any custom display text. The platform will use default names and descriptions.

Example:

final config = FlutterPermissionKitConfig(
  permissions: [Permission.camera, Permission.photos],
);

Implementation

static Permission get camera => Permission(type: PermissionType.camera);