addCall method

void addCall(
  1. ChatCall call
)

Adds the provided ChatCall to the AbstractCallRepository.

Implementation

void addCall(ChatCall call) {
  Log.debug('addCall($call)', '$runtimeType');
  _callRepo.add(call);
}