Source
void markAsDirty({bool onlySelf}) { onlySelf = onlySelf == true; this._pristine = false; if (_parent != null && !onlySelf) { this._parent.markAsDirty(onlySelf: onlySelf); } }
void markAsDirty({bool onlySelf}) { onlySelf = onlySelf == true; this._pristine = false; if (_parent != null && !onlySelf) { this._parent.markAsDirty(onlySelf: onlySelf); } }