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