toJson method

Map<String, dynamic> toJson()

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,
  };
}