endCall method

void endCall(
  1. ChatId chatId
)

Ends an OngoingCall happening in the Chat identified by the provided chatId, if any.

Implementation

void endCall(ChatId chatId) {
  Log.debug('endCall($chatId)', '$runtimeType');
  _callRepo.remove(chatId);
}