removeCall method

void removeCall(
  1. Call call
)

removes a call and notifies listeners

Implementation

void removeCall(Call call) {
  _calls.removeWhere(
      (element) => element.uuid.toLowerCase() == call.uuid.toLowerCase());
  _notifyListeners();
}