SingleProductModel constructor

SingleProductModel({
  1. String? status,
  2. int? code,
  3. String? message,
  4. String? timestamp,
  5. Data? data,
})

Implementation

SingleProductModel({
  this.status,
  this.code,
  this.message,
  this.timestamp,
  this.data,
});