remove method

  1. @override
Rx<OngoingCall>? remove(
  1. ChatId chatId
)
override

Ends an OngoingCall happening in the Chat identified by the provided chatId.

Implementation

@override
Rx<OngoingCall>? remove(ChatId chatId) {
  Log.debug('remove($chatId)', '$runtimeType');

  final Rx<OngoingCall>? call = calls.remove(chatId);
  call?.value.state.value = OngoingCallState.ended;
  call?.value.dispose();

  return call;
}