ChallengeInfo constructor

const ChallengeInfo({
  1. required String token,
  2. required int complexity,
  3. ChallengeAlgorithm challengeAlgorithm = ChallengeAlgorithm.SHA256,
})

Implementation

const ChallengeInfo({
  required this.token,
  required this.complexity,
  this.challengeAlgorithm = ChallengeAlgorithm.SHA256
});