PaymentFailedData constructor

const PaymentFailedData({
  1. required String error,
  2. required String nodeId,
  3. LNInvoice? invoice,
  4. String? label,
})

Implementation

const PaymentFailedData({
  required this.error,
  required this.nodeId,
  this.invoice,
  this.label,
});