lazyThrottled<T> static method
Like throttled, but the initial value is lazily initialized.
Implementation
static ThrottledBeacon<T> lazyThrottled<T>(
{T? initialValue, required Duration duration}) =>
ThrottledBeacon<T>(initialValue: initialValue, duration: duration);