MessageActionPaymentSent constructor

const MessageActionPaymentSent({
  1. required bool recurringInit,
  2. required bool recurringUsed,
  3. required String currency,
  4. required int totalAmount,
  5. String? invoiceSlug,
})

Message Action Payment Sent constructor.

Implementation

const MessageActionPaymentSent({
  required this.recurringInit,
  required this.recurringUsed,
  required this.currency,
  required this.totalAmount,
  this.invoiceSlug,
}) : super._();