CraCredential constructor
CraCredential({})
Implementation
CraCredential({
this.secret,
this.derivedKey,
this.salt,
this.iterations,
this.keyLen,
this.role,
this.provider,
this.authExtra,
this.challenge,
}) : assert(
secret != null || derivedKey != null,
'Provide either secret or derivedKey for CRA credentials.',
);