private _userInspectValue: InspectValue<V> | undefined;
private get userInspectValue(): InspectValue<V> {
this._userInspectValue = this.userConfiguration.inspect<V>(this.key, this.overrides.overrideIdentifier);
}
return this._userInspectValue;
}
get userValue(): V | undefined {