buildUseCaseStream method

  1. @override
  2. @nonVirtual
Future<Stream<T?>> buildUseCaseStream(
  1. Params? params
)
override

Builds the Stream to be subscribed to. Params is required by the UseCase to retrieve the appropraite data from the repository

Implementation

@override
@nonVirtual
Future<Stream<T?>> buildUseCaseStream(params) =>
    Future.value(Stream.value(null));