ChallengeCommand constructor

ChallengeCommand({
  1. String? id,
  2. required String salt,
  3. DateTime? timestamp,
})

Implementation

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