contains method
- 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);
}