Source
void markAsPending({bool onlySelf}) { onlySelf = onlySelf == true; this._status = PENDING; if (_parent != null && !onlySelf) { this._parent.markAsPending(onlySelf: onlySelf); } }
void markAsPending({bool onlySelf}) { onlySelf = onlySelf == true; this._status = PENDING; if (_parent != null && !onlySelf) { this._parent.markAsPending(onlySelf: onlySelf); } }