buildUseCaseStream method
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));