UserDetails constructor

UserDetails({
  1. String? sId,
  2. Wallet? wallet,
  3. List<Null>? usedCoupons,
  4. List<Null>? ampReaderIds,
  5. String? phoneNumber,
  6. String? lastPurchasedOn,
  7. String? country,
  8. String? userCurrency,
  9. String? name,
})

Implementation

UserDetails(
    {this.sId,
    this.wallet,
    this.usedCoupons,
    this.ampReaderIds,
    this.phoneNumber,
    this.lastPurchasedOn,
    this.country,
    this.userCurrency,
    this.name});