getMaxZoom method

Future<double> getMaxZoom()

获取支持的最大变焦值

returns 最大变焦值

Implementation

Future<double> getMaxZoom() async {
  return await _livePusherMethodChannel.invokeMethod(
    'getMaxZoom',
    wrapArgs(),
  );
}