toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'address'] = this.address;
    json[r'hostname'] = this.hostname;
  return json;
}