GoogleCloudIdentitytoolkitAdminV2HashConfig.fromJson constructor
GoogleCloudIdentitytoolkitAdminV2HashConfig.fromJson(
- Map json_
Implementation
GoogleCloudIdentitytoolkitAdminV2HashConfig.fromJson(core.Map json_)
: this(
algorithm: json_.containsKey('algorithm')
? json_['algorithm'] as core.String
: null,
memoryCost: json_.containsKey('memoryCost')
? json_['memoryCost'] as core.int
: null,
rounds:
json_.containsKey('rounds') ? json_['rounds'] as core.int : null,
saltSeparator: json_.containsKey('saltSeparator')
? json_['saltSeparator'] as core.String
: null,
signerKey: json_.containsKey('signerKey')
? json_['signerKey'] as core.String
: null,
);