GetProductsResponse constructor

GetProductsResponse({
  1. String? status,
  2. String? message,
  3. List<ProductData>? data,
})

Implementation

GetProductsResponse({
    this.status,
    this.message,
    this.data,
});