getZoom method
Gets current zoom value.
This also works when smooth zoom is in progress. Applications should check isZoomSupported before using this method.
Implementation
Future<int> getZoom() async {
return _channel.$getZoom(this) as int;
}
Gets current zoom value.
This also works when smooth zoom is in progress. Applications should check isZoomSupported before using this method.
Future<int> getZoom() async {
return _channel.$getZoom(this) as int;
}