hasChanged property
Some shorthand methods to simplify the check of changesFromLastUpdate
for the most used variables
Implementation
bool get hasChanged {
return allItems.where((ci) => ci.hasChanged).length > 0 ||
changesFromLastUpdate.keys.length > 0;
}