get method
Returns the current value and establishes a reactive dependency.
This is equivalent to accessing the value getter.
Returns: The current value of the signal
Implementation
@override
T get() {
if (!hasInitialized) _load();
return super.get();
}