getMinFPS method

Future<AlivcLivePushFPS> getMinFPS()

获取最小视频采集帧率

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

Implementation

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