Reactive<T> constructor
Reactive<T> ({})
Reactive is a component that is used with Stream to render components based on the data emitted by the stream.
Implementation
Reactive({
required this.stream,
required this.builder,
this.initial,
super.id,
super.attributes,
super.style,
super.className,
}) : super(tag: 'div');