PayInvoiceCommand constructor

PayInvoiceCommand({
  1. required String walletId,
  2. required String invoiceId,
  3. required List<String> addresses,
  4. required BigInt amount,
  5. List<InvoiceOutputSpec>? outputs,
  6. String? changeAddress,
  7. Map<String, dynamic>? paymentMetadata,
  8. BigInt? feeEstimateSats,
})

Implementation

PayInvoiceCommand({
  required this.walletId,
  required this.invoiceId,
  required this.addresses,
  required this.amount,
  this.outputs,
  this.changeAddress,
  this.paymentMetadata,
  this.feeEstimateSats,
});