Extra constructor
Extra({})
Implementation
Extra({
String? challenge,
String? salt,
int? keyLen,
String? channelBinding,
int? iterations,
int? memory,
String? kdf,
String? nonce,
Map<String, dynamic>? custom,
}) : _challenge = challenge,
_salt = salt,
_keyLen = keyLen,
_channelBinding = channelBinding,
_iterations = iterations,
_memory = memory,
_kdf = kdf,
_nonce = nonce {
if (custom != null && custom.isNotEmpty) {
this.custom.addAll(custom);
}
}