ClosedChannelPaymentDetails constructor

const ClosedChannelPaymentDetails({
  1. required ChannelState state,
  2. required String fundingTxid,
  3. String? shortChannelId,
  4. String? closingTxid,
})

Implementation

const ClosedChannelPaymentDetails({
  required this.state,
  required this.fundingTxid,
  this.shortChannelId,
  this.closingTxid,
});