RequestRefundSignatureCommand constructor

RequestRefundSignatureCommand({
  1. required String channelId,
  2. required String fundingTxId,
  3. required int fundingOutputIndex,
  4. required String refundTxHex,
  5. required int lockTimeUnix,
  6. required String serverSignatureHex,
  7. String? commandId,
  8. DateTime? timestamp,
  9. Map<String, dynamic>? metadata,
})

Implementation

RequestRefundSignatureCommand({
  required String channelId,
  required this.fundingTxId,
  required this.fundingOutputIndex,
  required this.refundTxHex,
  required this.lockTimeUnix,
  required this.serverSignatureHex,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        channelId: channelId,
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );