checkCameraPermission method

Future<bool> checkCameraPermission()

Checks whether the camera permission is granted for SeeSo.

This function asynchronously checks whether the camera permission is granted for the SeeSo SDK. It returns a Future that completes with a boolean value:

  • true if the camera permission is granted.
  • false if the camera permission is not granted.

Implementation

Future<bool> checkCameraPermission() async {
  return await Permission.camera.status.isGranted;
}