FailedPaymentDetails constructor

const FailedPaymentDetails({
  1. required Money amount,
  2. required String time,
  3. FailedPaymentReason? reasonCode,
  4. String? nextPaymentRetryTime,
})

Implementation

const FailedPaymentDetails(
    {required this.amount,
    required this.time,
    this.reasonCode,
    this.nextPaymentRetryTime});