getCamera method Null safety
- int cameraId
Returns a camera for the given cameraId
.
Throws a CameraException if the camera does not exist.
Implementation
@visibleForTesting
Camera getCamera(int cameraId) {
final Camera? camera = cameras[cameraId];
if (camera == null) {
throw PlatformException(
code: CameraErrorCode.notFound.toString(),
message: 'No camera found for the given camera id $cameraId.',
);
}
return camera;
}