toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authentication = this.authentication;
final serviceDirectoryConfig = this.serviceDirectoryConfig;
final textSchema = this.textSchema;
final tlsConfig = this.tlsConfig;
return {
'authentication': ?authentication,
'serviceDirectoryConfig': ?serviceDirectoryConfig,
'textSchema': ?textSchema,
'tlsConfig': ?tlsConfig,
};
}