getAllProducts method

Future<Either<Failure, List<Product>>> getAllProducts()

Implementation

Future<Either<Failure, List<Product>>> getAllProducts() {
  return _getAllProductsUseCase.execute(NoParams());
}