stop method

Future<void> stop()

Disables the local participant's video and stops sending the video to a conference. Use this method only when the current participant is at the conference.

Implementation

Future<void> stop() async {
  return await _methodChannel.invokeMethod<void>("stop");
}