setVideoMuteImage method

Future<void> setVideoMuteImage(
  1. String imagePath,
  2. int fps
)

Implementation

Future<void> setVideoMuteImage(String imagePath, int fps) async {
  _channel.invokeMethod("setVideoMuteImage", {
    "imagePath": imagePath,
    "fps": fps,
  });
}