FullChannelStateResponse constructor
FullChannelStateResponse({
- required String channelId,
- required String walletId,
- required String status,
- String? role,
- required BigInt clientBalanceSats,
- required BigInt serverBalanceSats,
- required int latestSequenceNumber,
- required BigInt fundingAmountSats,
- String? fundingTxId,
- String? fundingTxHex,
- int? fundingOutputIndex,
- String? clientPubKeyHex,
- String? serverPubKeyHex,
- String? clientAddressB58,
- String? serverAddressB58,
- int? derivationIndex,
- int? lockTimeUnix,
- required bool success,
- String? error,
Implementation
FullChannelStateResponse({
required this.channelId,
required this.walletId,
required this.status,
this.role,
required this.clientBalanceSats,
required this.serverBalanceSats,
required this.latestSequenceNumber,
required this.fundingAmountSats,
this.fundingTxId,
this.fundingTxHex,
this.fundingOutputIndex,
this.clientPubKeyHex,
this.serverPubKeyHex,
this.clientAddressB58,
this.serverAddressB58,
this.derivationIndex,
this.lockTimeUnix,
required this.success,
this.error,
}) : super(payload: null);