ChannelInitiatedResponse constructor

ChannelInitiatedResponse({
  1. required String channelId,
  2. required String clientPubKeyHex,
  3. required String clientAddressB58,
  4. required int derivationIndex,
  5. required int lockTimeUnix,
  6. required bool success,
  7. String? error,
})

Implementation

ChannelInitiatedResponse({
  required this.channelId,
  required this.clientPubKeyHex,
  required this.clientAddressB58,
  required this.derivationIndex,
  required this.lockTimeUnix,
  required this.success,
  this.error,
}) : super(payload: null);