ReferenceData constructor

ReferenceData({
  1. required String subscriberId,
  2. required int paymentId,
  3. required String providerId,
  4. required String amount,
  5. required String currency,
  6. required String gwProvider,
  7. required String subscriberName,
  8. required String? email,
  9. required String mobileNo,
  10. required String receipt,
  11. required String transactionPurpose,
  12. required String availabilityId,
  13. String? planId,
  14. required String recurringMode,
  15. String? pgEnv,
  16. String? confirmUrl,
  17. String? webhookUrl,
  18. String? checkoutUrl,
})

Implementation

ReferenceData({
  required this.subscriberId,
  required this.paymentId,
  required this.providerId,
  required this.amount,
  required this.currency,
  required this.gwProvider,
  required this.subscriberName,
  required this.email,
  required this.mobileNo,
  required this.receipt,
  required this.transactionPurpose,
  required this.availabilityId,
   this.planId,
  required this.recurringMode,
   this.pgEnv,
   this.confirmUrl,
   this.webhookUrl,
   this.checkoutUrl,
});