start method

Future<void> start(
  1. Participant participant
)

Enables the local participant's video and sends the video to a conference. Rejection may be caused by the PromisePermissionRefusedEventException or MediaException. If the application does not have a permission to start a video stream, it emits PermissionRefusedEvent.

Implementation

Future<void> start(Participant participant) async {
  return await _methodChannel.invokeMethod<void>(
    "start",
    participant.toJson(),
  );
}