getFps method
获取视频采集帧率
returns
视频采集帧率 默认:AlivcLivePushFPS.fps_20
Implementation
Future<AlivcLivePushFPS> getFps() async {
String strV = await _livePusherConfigMC.invokeMethod(
'getFps',
wrapArgs(),
);
int intV = int.parse(strV);
return FPSData.convertEnumValue(intV);
}