addCall method

Future<void> addCall(
  1. ChatCall call, {
  2. bool dontAddIfAccounted = false,
})

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