buildUseCaseFuture abstract method

Future<T?> buildUseCaseFuture(
  1. Params? params
)

Builds the Future to be awaited. Params is required by the UseCase to retrieve the appropriate data from the repository.

Implementation

Future<T?> buildUseCaseFuture(Params? params);