MemberModel constructor

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

Implementation

MemberModel({
  required this.documentID,
  this.name,
  this.subscriptions,
  this.subscriptionsAsStrArr,
  this.photo,
  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,
});