toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (enable != null) {
_json[r'Enable'] = enable;
}
if (verify != null) {
_json[r'Verify'] = verify;
}
if (encrypt != null) {
_json[r'Encrypt'] = encrypt;
}
if (idpUrl != null) {
_json[r'IdpUrl'] = idpUrl;
}
if (idpDescriptorUrl != null) {
_json[r'IdpDescriptorUrl'] = idpDescriptorUrl;
}
if (assertionConsumerServiceURL != null) {
_json[r'AssertionConsumerServiceURL'] = assertionConsumerServiceURL;
}
if (idpCertificateFile != null) {
_json[r'IdpCertificateFile'] = idpCertificateFile;
}
if (publicCertificateFile != null) {
_json[r'PublicCertificateFile'] = publicCertificateFile;
}
if (privateKeyFile != null) {
_json[r'PrivateKeyFile'] = privateKeyFile;
}
if (firstNameAttribute != null) {
_json[r'FirstNameAttribute'] = firstNameAttribute;
}
if (lastNameAttribute != null) {
_json[r'LastNameAttribute'] = lastNameAttribute;
}
if (emailAttribute != null) {
_json[r'EmailAttribute'] = emailAttribute;
}
if (usernameAttribute != null) {
_json[r'UsernameAttribute'] = usernameAttribute;
}
if (nicknameAttribute != null) {
_json[r'NicknameAttribute'] = nicknameAttribute;
}
if (localeAttribute != null) {
_json[r'LocaleAttribute'] = localeAttribute;
}
if (positionAttribute != null) {
_json[r'PositionAttribute'] = positionAttribute;
}
if (loginButtonText != null) {
_json[r'LoginButtonText'] = loginButtonText;
}
return _json;
}