ChannelClosedEvent constructor

ChannelClosedEvent({
  1. String? walletId,
  2. required String channelId,
  3. String? reason,
  4. String? settlementTxId,
})

Implementation

ChannelClosedEvent({
  this.walletId,
  required this.channelId,
  this.reason,
  this.settlementTxId,
});