addCall method
Adds the provided ChatCall to the AbstractCallRepository.
Implementation
void addCall(ChatCall call, {bool dontAddIfAccounted = false}) {
Log.debug('addCall($call, $dontAddIfAccounted)', '$runtimeType');
_callRepo.add(call, dontAddIfAccounted: dontAddIfAccounted);
}