setVideoFps static method

Future<void> setVideoFps(
  1. int fps
)

设置大流fps

Implementation

static Future<void> setVideoFps(int fps) async {
  await _channel.invokeMethod("setVideoFps", {'fps': fps});
}