MemberModel constructor
MemberModel({
- required String documentID,
- String? name,
- List<
MemberSubscriptionModel> ? subscriptions, - List<
String> ? subscriptionsAsStrArr, - PublicMediumModel? photo,
- String? photoURL,
- String? shipStreet1,
- String? shipStreet2,
- String? shipCity,
- String? shipState,
- String? postcode,
- String? country,
- bool? invoiceSame,
- String? invoiceStreet1,
- String? invoiceStreet2,
- String? invoiceCity,
- String? invoiceState,
- String? invoicePostcode,
- String? invoiceCountry,
- String? email,
- 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,
});