OpenChannelCommand constructor

OpenChannelCommand({
  1. required String walletId,
  2. required String serverPeerId,
  3. required int fundingAmountSats,
  4. required int lockTimeDurationSeconds,
  5. String? context,
})

Implementation

OpenChannelCommand({
  required this.walletId,
  required this.serverPeerId,
  required this.fundingAmountSats,
  required this.lockTimeDurationSeconds,
  this.context,
});