fromJson static method
Returns a new MmEnvironmentConfigSamlSettings instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static MmEnvironmentConfigSamlSettings? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
// Ensure that the map contains the required keys.
// Note 1: the values aren't checked for validity beyond being non-null.
// Note 2: this code is stripped in release mode!
assert(() {
requiredKeys.forEach((key) {
assert(json.containsKey(key), 'Required key "MmEnvironmentConfigSamlSettings[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "MmEnvironmentConfigSamlSettings[$key]" has a null value in JSON.');
});
return true;
}());
return MmEnvironmentConfigSamlSettings(
enable: mapValueOfType<bool>(json, r'Enable'),
verify: mapValueOfType<bool>(json, r'Verify'),
encrypt: mapValueOfType<bool>(json, r'Encrypt'),
idpUrl: mapValueOfType<bool>(json, r'IdpUrl'),
idpDescriptorUrl: mapValueOfType<bool>(json, r'IdpDescriptorUrl'),
assertionConsumerServiceURL: mapValueOfType<bool>(json, r'AssertionConsumerServiceURL'),
idpCertificateFile: mapValueOfType<bool>(json, r'IdpCertificateFile'),
publicCertificateFile: mapValueOfType<bool>(json, r'PublicCertificateFile'),
privateKeyFile: mapValueOfType<bool>(json, r'PrivateKeyFile'),
firstNameAttribute: mapValueOfType<bool>(json, r'FirstNameAttribute'),
lastNameAttribute: mapValueOfType<bool>(json, r'LastNameAttribute'),
emailAttribute: mapValueOfType<bool>(json, r'EmailAttribute'),
usernameAttribute: mapValueOfType<bool>(json, r'UsernameAttribute'),
nicknameAttribute: mapValueOfType<bool>(json, r'NicknameAttribute'),
localeAttribute: mapValueOfType<bool>(json, r'LocaleAttribute'),
positionAttribute: mapValueOfType<bool>(json, r'PositionAttribute'),
loginButtonText: mapValueOfType<bool>(json, r'LoginButtonText'),
);
}
return null;
}