setCameraFocalLength method

  1. @override
Future<void> setCameraFocalLength(
  1. double focalLength
)
override

Sets the focal length of the camera. Default value is 28.0.

Implementation

@override
Future<void> setCameraFocalLength(double focalLength) async {
  await _shim.setCameraFocalLength(focalLength).toDart;
}