getMinZoomLevel method

  1. @override
Future<double> getMinZoomLevel(
  1. int cameraId
)

Gets the minimum supported zoom level for the selected camera.

Implementation

@override
Future<double> getMinZoomLevel(int cameraId) async {
  // TODO(jokerttu): Implement zoom level support, https://github.com/flutter/flutter/issues/97537.
  // Value is returned to support existing implementations.
  return 1.0;
}