getCurrentZoom method

Future<double> getCurrentZoom()

获取当前变焦值

returns 当前变焦值

Implementation

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