bool isDirty

Source

bool get isDirty {
  return !identical(this._additionsHead, null) ||
      !identical(this._movesHead, null) ||
      !identical(this._removalsHead, null) ||
      !identical(this._identityChangesHead, null);
}