Products constructor

Products({
  1. int? id,
  2. String? title,
  3. String? bodyHtml,
  4. String? vendor,
  5. String? productType,
  6. String? createdAt,
  7. String? handle,
  8. String? updatedAt,
  9. String? publishedAt,
  10. String? templateSuffix,
  11. String? status,
  12. String? publishedScope,
  13. String? tags,
  14. String? adminGraphqlApiId,
  15. List<Variants>? variants,
  16. List<Options>? options,
  17. List<Images>? images,
  18. Images? image,
})

Implementation

Products(
    {this.id,
    this.title,
    this.bodyHtml,
    this.vendor,
    this.productType,
    this.createdAt,
    this.handle,
    this.updatedAt,
    this.publishedAt,
    this.templateSuffix,
    this.status,
    this.publishedScope,
    this.tags,
    this.adminGraphqlApiId,
    this.variants,
    this.options,
    this.images,
    this.image});