getVideoOnly method
获取是否纯视频推流
returns 是否纯视频推流 默认: false
Implementation
Future<bool> getVideoOnly() async {
String strV = await AlivcLivePusherConfig.methodChannel
.invokeMethod('getVideoOnly', _wrap());
int intV = int.parse(strV);
return intV == 1 ? true : false;
}