getMirror method

Future<bool> getMirror()

获取播放是否镜像

returns 播放是否镜像 默认: false

Implementation

Future<bool> getMirror() async {
  String strV = await _playConfigMethodChannel.invokeMethod(
    'getMirror',
    wrapArgs(),
  );
  int intV = int.parse(strV);
  return intV == 1 ? true : false;
}