getCameraMaxZoom method Null safety

Future<double> getCameraMaxZoom()

Get the maximum zoom scale.

Implementation

Future<double> getCameraMaxZoom() async {
  DoubleValue reply = await _api.getCameraMaxZoom();
  return reply.value ?? 0.0;
}