RequestChannelCommand constructor
RequestChannelCommand({
- required String channelId,
- required String walletId,
- required String clientPeerId,
- required String serverPeerId,
- required String clientPubKeyHex,
- required String clientAddressB58,
- required int derivationIndex,
- required BigInt fundingAmountSats,
- required int lockTimeDurationSeconds,
- String? context,
- String? commandId,
- DateTime? timestamp,
- Map<
String, dynamic> ? metadata,
Implementation
RequestChannelCommand({
required String channelId,
required this.walletId,
required this.clientPeerId,
required this.serverPeerId,
required this.clientPubKeyHex,
required this.clientAddressB58,
required this.derivationIndex,
required this.fundingAmountSats,
required this.lockTimeDurationSeconds,
this.context,
String? commandId,
DateTime? timestamp,
Map<String, dynamic>? metadata,
}) : super(
channelId: channelId,
commandId: commandId,
timestamp: timestamp,
metadata: metadata,
);