SubscriberModel constructor

SubscriberModel({
  1. String? uid,
  2. String? referralCode,
  3. bool? isGlobalSalesPool,
  4. bool? isFounder,
  5. bool? isCorporate,
  6. String? wallet,
  7. String? founderShares,
  8. String? parentId,
  9. String? createdAt,
  10. String? updatedAt,
  11. String? paymentAddress,
  12. bool? paymentAddressLinked,
  13. String? rank,
  14. User? user,
  15. 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
    });