remove method

void remove(
  1. ChatId chatId
)

Removes an OngoingCall identified by the given chatId.

Implementation

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