Returns true if exists call with specified id
bool contains(int callId) { int index = _callItems.indexWhere((c) => c.myCallId==callId); return (index != -1); }