MessageActionPaymentSentMe constructor

const MessageActionPaymentSentMe({
  1. required bool recurringInit,
  2. required bool recurringUsed,
  3. required String currency,
  4. required int totalAmount,
  5. required Uint8List payload,
  6. PaymentRequestedInfoBase? info,
  7. String? shippingOptionId,
  8. required PaymentChargeBase charge,
  9. DateTime? subscriptionUntilDate,
})

Message Action Payment Sent Me constructor.

Implementation

const MessageActionPaymentSentMe({
  required this.recurringInit,
  required this.recurringUsed,
  required this.currency,
  required this.totalAmount,
  required this.payload,
  this.info,
  this.shippingOptionId,
  required this.charge,
  this.subscriptionUntilDate,
}) : super._();