toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authFields = this.authFields;
final authKey = this.authKey;
final authType = this.authType;
final description = this.description;
final displayName = this.displayName;
final isDefault = this.isDefault;
return {
'authFields': ?authFields,
'authKey': ?authKey,
'authType': ?authType,
'description': ?description,
'displayName': ?displayName,
'isDefault': ?isDefault,
};
}