call method

Future<Either<Failure, List<User>>> call()

Implementation

Future<Either<Failure, List<User>>> call() async {
  return await repository.getUsers();
}