getPushMirror method

Future<bool> getPushMirror()

获取推流镜像

returns 是否开启推流镜像 默认: false

Implementation

Future<bool> getPushMirror() async {
  String strV = await AlivcLivePusherConfig.methodChannel
      .invokeMethod('getPushMirror', _wrap());
  int intV = int.parse(strV);
  return intV == 1 ? true : false;
}