stream<T> static method
Implementation
static ServiceWidget<StreamService<T>> stream<T>(Stream<T> stream,
{T? initialValue}) =>
ServiceWidget(
init: (widget) => StreamService(widget,
stream: stream, initialValue: initialValue));