onChangeUnthrottled method
Like onChange, but without a defaut throttle duration.
The stream still respects backpressure for paused subscriptions with an efficient internal buffer of update notifications.
Implementation
Stream<UpdateNotification> onChangeUnthrottled(Iterable<String>? tables,
{bool triggerImmediately = true}) {
return onChange(tables,
triggerImmediately: triggerImmediately, throttle: null);
}