ChannelPaymentEvent constructor

ChannelPaymentEvent({
  1. String? walletId,
  2. required String channelId,
  3. required int amountSats,
  4. required int sequence,
  5. required int clientBalance,
  6. required int serverBalance,
})

Implementation

ChannelPaymentEvent({
  this.walletId,
  required this.channelId,
  required this.amountSats,
  required this.sequence,
  required this.clientBalance,
  required this.serverBalance,
});