InitiateChannelMessage constructor

InitiateChannelMessage({
  1. required String channelId,
  2. required String walletId,
  3. required String clientPeerId,
  4. required String serverPeerId,
  5. required BigInt fundingAmountSats,
  6. required int lockTimeDurationSeconds,
  7. String? context,
})

Implementation

InitiateChannelMessage({
  required this.channelId,
  required this.walletId,
  required this.clientPeerId,
  required this.serverPeerId,
  required this.fundingAmountSats,
  required this.lockTimeDurationSeconds,
  this.context,
}) : super(payload: null);