Subscriber constructor

const Subscriber({
  1. Name? name,
  2. String? emailAddress,
  3. required String payerId,
  4. Phone? phone,
  5. ShippingDetail? shippingAddress,
  6. PaymentSource? paymentSource,
})

Implementation

const Subscriber(
    {this.name,
    this.emailAddress,
    required this.payerId,
    this.phone,
    this.shippingAddress,
    this.paymentSource});