peek property
Returns the current computed value without establishing a reactive dependency.
Use this when you need to read the value without triggering reactivity. Unlike peekCached, this method always recomputes the value if needed, ensuring you get the latest result. Use peekCached when you need a quick cached value and can tolerate staleness.
Example:
final computed = Computed(() => expensiveCalculation());
print(computed.peek); // Gets latest value without creating dependency
Implementation
@override
T get peek {
return untracked(() => getComputed(this));
}