Extra constructor

Extra({
  1. String? challenge,
  2. String? salt,
  3. int? keyLen,
  4. String? channelBinding,
  5. int? iterations,
  6. int? memory,
  7. String? kdf,
  8. String? nonce,
})

Implementation

Extra(
    {this.challenge,
    this.salt,
    this.keyLen,
    this.channelBinding,
    this.iterations,
    this.memory,
    this.kdf,
    this.nonce});