toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final apiAuthentication = this.apiAuthentication;
  final customHeaders = this.customHeaders;
  final serverAddress = this.serverAddress;
  final serviceDirectoryConfig = this.serviceDirectoryConfig;
  final tlsConfig = this.tlsConfig;
  final toolOverrides = this.toolOverrides;
  return {
    'apiAuthentication': ?apiAuthentication,
    'customHeaders': ?customHeaders,
    'serverAddress': ?serverAddress,
    'serviceDirectoryConfig': ?serviceDirectoryConfig,
    'tlsConfig': ?tlsConfig,
    'toolOverrides': ?toolOverrides,
  };
}