peek property
Gets the current value without establishing a reactive dependency.
Use this when you need to read the value without triggering reactivity.
Returns: The current value
Example:
final count = Signal(0);
final value = count.peek; // Doesn't create dependency
Implementation
@override
T get peek => delegated.source.peek;