toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'host'] = this.host;
    json[r'port'] = this.port;
    json[r'username'] = this.username;
    json[r'password'] = this.password;
    json[r'useSSL'] = this.useSSL;
  return json;
}