leave method

Future<void> leave(
  1. CallService calls
)

Leaves this OngoingCall.

Throws a LeaveChatCallException.

Implementation

Future<void> leave(CallService calls) async {
  Log.debug('leave()', '$runtimeType');
  await calls.leave(chatId.value, deviceId);
}