updateCameraLens method

Future<String?> updateCameraLens(
  1. IOSCameraLens cameraLens
)

Updates the camera lens to the specified IOSCameraLens.

  • cameraLens: The camera lens to switch to.

Returns a Future that completes with a string indicating the result of the operation.

Implementation

Future<String?> updateCameraLens(IOSCameraLens cameraLens) {
  return broadcater.updateCameraLens(cameraLens);
}