getMinFPS method

Future<AlivcLivePushFPS> getMinFPS()

获取最小视频采集帧率

returns 最小视频采集帧率 默认:AlivcLivePushFPS.fps_8

Implementation

Future<AlivcLivePushFPS> getMinFPS() async {
  String strV = await AlivcLivePusherConfig.methodChannel
      .invokeMethod('getMinFPS', _wrap());
  int intV = int.parse(strV);
  return FPSData.convertEnumValue(intV);
}