Subscriber constructor

Subscriber({
  1. String? uid,
  2. dynamic referralCode,
  3. bool? isGlobalSalesPool,
  4. bool? isFounder,
  5. bool? isCorporate,
  6. dynamic wallet,
  7. String? founderShares,
  8. dynamic parentId,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
  11. String? paymentAddress,
  12. bool? paymentAddressLinked,
  13. dynamic neoMilesWallet,
  14. dynamic rank,
  15. User? user,
  16. List<Subscription>? subscriptions,
})

Implementation

Subscriber({
  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.neoMilesWallet,
  this.rank,
  this.user,
  this.subscriptions,
});