ProductsResponse constructor

ProductsResponse({
  1. int? code,
  2. String? errorMessage,
  3. String? errorDescription,
  4. String? traceId,
  5. required List<Product?> products,
  6. required List<DigitalShopGeneralError?> errors,
})

Implementation

ProductsResponse({
  this.code,
  this.errorMessage,
  this.errorDescription,
  this.traceId,
  required this.products,
  required this.errors,
});