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