toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final enabled = this.enabled;
  final host = this.host;
  final name = this.name;
  final port = this.port;
  final protocol = this.protocol;
  final tlsInfo = this.tlsInfo;
  return {
    'enabled': ?enabled,
    'host': ?host,
    'name': ?name,
    'port': ?port,
    'protocol': ?protocol,
    'tlsInfo': ?tlsInfo,
  };
}