getCameraZoomMaxRatio method
Get the camera zoom factor (supports only the Android and iOS platforms)
Implementation
Future<double?> getCameraZoomMaxRatio() async {
var result = await _channel.invokeMethod('getCameraZoomMaxRatio');
return V2TXLiveFlutterResult.doubleValue(result);
}