ChannelPayCommand constructor

ChannelPayCommand({
  1. required String channelId,
  2. required String walletId,
  3. required int amountSats,
  4. String? purpose,
  5. String? invoiceId,
})

Implementation

ChannelPayCommand({
  required this.channelId,
  required this.walletId,
  required this.amountSats,
  this.purpose,
  this.invoiceId,
});