leave method

Future<void> leave(
  1. {ConferenceLeaveOptions? options}
)

Leaves the current conference. The options parameter allows setting additional options for the leaving participant. The options parameter allows choosing additional options for the leaving participant.

Implementation

Future<void> leave({ConferenceLeaveOptions? options}) async {
  await _methodChannel.invokeMethod<void>("leave");
  if (options != null && options.leaveRoom) {
    await _sessionService.close();
    return;
  }
  return;
}