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