SubscriberModel constructor
SubscriberModel({ - String? uid,
- String? referralCode,
- bool? isGlobalSalesPool,
- bool? isFounder,
- bool? isCorporate,
- String? wallet,
- String? founderShares,
- String? parentId,
- String? createdAt,
- String? updatedAt,
- String? paymentAddress,
- bool? paymentAddressLinked,
- String? rank,
- User? user,
- List<Subscriptions>? subscriptions,
})
Implementation
SubscriberModel(
{this.uid,
this.referralCode,
this.isGlobalSalesPool,
this.isFounder,
this.isCorporate,
this.wallet,
this.founderShares,
this.parentId,
this.createdAt,
this.updatedAt,
this.paymentAddress,
this.paymentAddressLinked,
this.rank,
this.user,
this.subscriptions
});