StreamNotification<T>.data constructor

StreamNotification<T>.data(
  1. T value
)

Constructs a StreamNotification with NotificationKind.data and wraps a value

Implementation

factory StreamNotification.data(T value) => DataNotification<T>(value);