PaymentLinkRequest constructor

const PaymentLinkRequest({
  1. required int amountCents,
  2. required List<String> paymentMethods,
  3. required String email,
  4. required String fullName,
  5. required String phoneNumber,
  6. String? description,
  7. bool isLive = true,
  8. String? paymentLinkImage,
  9. String? referenceId,
})

Implementation

const PaymentLinkRequest({
  required this.amountCents,
  required this.paymentMethods,
  required this.email,
  required this.fullName,
  required this.phoneNumber,
  this.description,
  this.isLive = true,
  this.paymentLinkImage,
  this.referenceId,
});