Customer constructor

Customer({
  1. String? id,
  2. String? createdAt,
  3. String? email,
  4. String? passwordChangedAt,
  5. bool? isGuest,
  6. bool? isTest,
  7. String? type,
  8. CustomerDetail? detail,
  9. StoreDTO? store,
  10. double? balance,
  11. String? balanceCurrency,
})

Implementation

Customer({
  this.id,
  this.createdAt,
  this.email,
  this.passwordChangedAt,
  this.isGuest,
  this.isTest,
  this.type,
  this.detail,
  this.store,
  this.balance,
  this.balanceCurrency,
});