AuthenticationChallenge constructor

const AuthenticationChallenge({
  1. required Uint8List nonce,
  2. required String serverId,
  3. required Channel channel,
  4. required DateTime issuedAt,
  5. required DateTime expiresAt,
  6. int failedAttempts = 0,
})

Implementation

const AuthenticationChallenge({
  required this.nonce,
  required this.serverId,
  required this.channel,
  required this.issuedAt,
  required this.expiresAt,
  this.failedAttempts = 0,
});