getPreviewMirror method
获取预览镜像
returns
是否开启预览镜像 默认: false
Implementation
Future<bool> getPreviewMirror() async {
String strV = await _livePusherConfigMC.invokeMethod(
'getPreviewMirror',
wrapArgs(),
);
int intV = int.parse(strV);
return intV == 1 ? true : false;
}