call abstract method

Future<T> call({
  1. Params params,
})

Executes the use case with optional parameters.

Returns a Future that completes with the result of type T. Implementations should handle errors appropriately.

Implementation

Future<T> call({Params params});