start method

Future<void> start(
  1. Participant participant
)

If the local participant used the stop method to stop receiving video streams from selected remote participants, the start method allows the participant to start receiving video streams from these participants. The start method does not impact the video transmission between remote participants and a conference and does not allow the local participant to force sending remote participants’ streams to the conference or to the local participant.

The start method requires a few seconds to become effective.

Implementation

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