MemberEntity constructor

MemberEntity({
  1. String? name,
  2. List<MemberSubscriptionEntity>? subscriptions,
  3. List<String>? subscriptionsAsStrArr,
  4. String? photoId,
  5. String? photoURL,
  6. String? shipStreet1,
  7. String? shipStreet2,
  8. String? shipCity,
  9. String? shipState,
  10. String? postcode,
  11. String? country,
  12. bool? invoiceSame,
  13. String? invoiceStreet1,
  14. String? invoiceStreet2,
  15. String? invoiceCity,
  16. String? invoiceState,
  17. String? invoicePostcode,
  18. String? invoiceCountry,
  19. String? email,
  20. bool? isAnonymous,
})

Implementation

MemberEntity({
  this.name,
  this.subscriptions,
  this.subscriptionsAsStrArr,
  this.photoId,
  this.photoURL,
  this.shipStreet1,
  this.shipStreet2,
  this.shipCity,
  this.shipState,
  this.postcode,
  this.country,
  this.invoiceSame,
  this.invoiceStreet1,
  this.invoiceStreet2,
  this.invoiceCity,
  this.invoiceState,
  this.invoicePostcode,
  this.invoiceCountry,
  this.email,
  this.isAnonymous,
});