EventFetchBuilder<T> constructor

const EventFetchBuilder<T>({
  1. Key? key,
  2. required EventStream<T> stream,
  3. DataWidgetBuilder<T>? builder,
  4. FetcherConfig? config,
})

Build a new EventFetchBuilder from an EventStream If stream already has a value or an error, it will be displayed directly.

Implementation

const EventFetchBuilder({super.key, required this.stream, this.builder, this.config});