Asset constructor

Asset({
  1. int? id,
  2. dynamic merchantId,
  3. String? uuid,
  4. String? name,
  5. String? url,
  6. dynamic description,
  7. dynamic size,
  8. String? type,
  9. String? isImage,
  10. String? status,
  11. dynamic deletedAt,
  12. DateTime? createdAt,
  13. DateTime? updatedAt,
  14. Pivot? pivot,
})

Implementation

Asset({
    this.id,
    this.merchantId,
    this.uuid,
    this.name,
    this.url,
    this.description,
    this.size,
    this.type,
    this.isImage,
    this.status,
    this.deletedAt,
    this.createdAt,
    this.updatedAt,
    this.pivot,
});