getResolution method
获取分辨率
returns
分辨率 默认: AlivcLivePushResolution.resolution_540P
Implementation
Future<AlivcLivePushResolution> getResolution() async {
String strV = await _livePusherConfigMC.invokeMethod(
'getResolution',
wrapArgs(),
);
int intV = int.parse(strV);
return AlivcLivePushResolution.values[intV];
}