ProvideRefundSignatureCommand constructor

ProvideRefundSignatureCommand({
  1. required String channelId,
  2. required String serverSignatureHex,
  3. String? commandId,
  4. DateTime? timestamp,
  5. Map<String, dynamic>? metadata,
})

Implementation

ProvideRefundSignatureCommand({
  required String channelId,
  required this.serverSignatureHex,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        channelId: channelId,
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );