GoogleCloudIdentitytoolkitAdminV2HashConfig.fromJson constructor

GoogleCloudIdentitytoolkitAdminV2HashConfig.fromJson(
  1. 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,
      );