getZoomLevel method Null safety

Future<int?> getZoomLevel()

获取map的比例尺级别

zoomLevel 比例尺级别

Implementation

Future<int?> getZoomLevel() async {
  return await BMFMapDispatcherFactory.instance.mapGetPropertyDispatcher
      .getZoomLevel(_mapChannel);
}