ChallengeResponseCommand constructor

ChallengeResponseCommand({
  1. required String commandId,
  2. String? id,
  3. required String signature,
  4. DateTime? timestamp,
})

Implementation

ChallengeResponseCommand({
  required this.commandId,
  String? id,
  required this.signature,
  DateTime? timestamp,
}) : super(
        id: id,
        payload: _toPayload(
          commandId: commandId,
          signature: signature,
        ),
        timestamp: timestamp,
        type: kCommandType,
      );