ChannelAcceptedEvent constructor
ChannelAcceptedEvent({
- required String channelId,
- required String walletId,
- required String clientPeerId,
- required String clientPubKeyHex,
- required String clientAddressB58,
- required String serverPubKeyHex,
- required String serverAddressB58,
- required int derivationIndex,
- required BigInt fundingAmountSats,
- required int lockTimeUnix,
- String? context,
- String? eventId,
- DateTime? timestamp,
- int? version,
- Map<
String, dynamic> ? metadata,
Implementation
ChannelAcceptedEvent({
required String channelId,
required this.walletId,
required this.clientPeerId,
required this.clientPubKeyHex,
required this.clientAddressB58,
required this.serverPubKeyHex,
required this.serverAddressB58,
required this.derivationIndex,
required this.fundingAmountSats,
required this.lockTimeUnix,
this.context,
String? eventId,
DateTime? timestamp,
int? version,
Map<String, dynamic>? metadata,
}) : super(
channelId: channelId,
eventId: eventId,
timestamp: timestamp,
version: version,
metadata: metadata,
);