Customers constructor

Customers({
  1. int? id,
  2. DateTime? dateCreated,
  3. DateTime? dateCreatedGmt,
  4. DateTime? dateModified,
  5. DateTime? dateModifiedGmt,
  6. String? email,
  7. String? firstName,
  8. String? lastName,
  9. String? role,
  10. String? username,
  11. Ing? billing,
  12. Ing? shipping,
  13. bool? isPayingCustomer,
  14. String? avatarUrl,
  15. List? metaData,
  16. Links? links,
})

Implementation

Customers({
  this.id,
  this.dateCreated,
  this.dateCreatedGmt,
  this.dateModified,
  this.dateModifiedGmt,
  this.email,
  this.firstName,
  this.lastName,
  this.role,
  this.username,
  this.billing,
  this.shipping,
  this.isPayingCustomer,
  this.avatarUrl,
  this.metaData,
  this.links,
});