contains method

  1. @override
bool contains(
  1. ChatId chatId
)
override

Returns true if an OngoingCall identified by chatId exists in the calls map.

Implementation

@override
bool contains(ChatId chatId) {
  Log.debug('contains($chatId)', '$runtimeType');
  return calls.containsKey(chatId);
}