getCameraMaxZoom method Null safety
Get the maximum zoom scale.
Implementation
Future<double> getCameraMaxZoom() async {
DoubleValue reply = await _api.getCameraMaxZoom();
return reply.value ?? 0.0;
}
Get the maximum zoom scale.
Future<double> getCameraMaxZoom() async {
DoubleValue reply = await _api.getCameraMaxZoom();
return reply.value ?? 0.0;
}