move method

  1. @override
void move(
  1. ChatId chatId,
  2. ChatId newChatId
)
override

Switches the OngoingCall identified by its chatId to the specified newChatId.

Implementation

@override
void move(ChatId chatId, ChatId newChatId) {
  Log.debug('move($chatId, $newChatId)', '$runtimeType');
  calls.move(chatId, newChatId);
}