peek method
Retrieves the value without resetting or updating it.
This method returns the current value without triggering any expiration checks or updates.
Implementation
Future<T> peek() => value.getOrFallback(fallbackValue());
Retrieves the value without resetting or updating it.
This method returns the current value without triggering any expiration checks or updates.
Future<T> peek() => value.getOrFallback(fallbackValue());