removeCall method
removes a call and notifies listeners
Implementation
void removeCall(Call call) {
_calls.removeWhere(
(element) => element.uuid.toLowerCase() == call.uuid.toLowerCase());
_notifyListeners();
}
removes a call and notifies listeners
void removeCall(Call call) {
_calls.removeWhere(
(element) => element.uuid.toLowerCase() == call.uuid.toLowerCase());
_notifyListeners();
}