removeCall static method

void removeCall(
  1. ChatId chatId
)

Removes a call identified by the provided chatId from the browser's storage.

Implementation

static void removeCall(ChatId chatId) {
  web.window.localStorage.removeItem('call_$chatId');
  web.window.localStorage.removeItem('at_call_$chatId');
}