ListProductsResponse constructor

ListProductsResponse({
  1. String? nextPageToken,
  2. List<Product>? products,
})

Implementation

ListProductsResponse({
  this.nextPageToken,
  this.products,
});