toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final connections = this.connections;
  final displayName = this.displayName;
  final expectedHostname = this.expectedHostname;
  final name = this.name;
  return {
    'connections': ?connections,
    'displayName': ?displayName,
    'expectedHostname': ?expectedHostname,
    'name': ?name,
  };
}