toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'secureSmtpServerHost'] = this.secureSmtpServerHost;
json[r'secureSmtpServerPort'] = this.secureSmtpServerPort;
json[r'secureSmtpUsername'] = this.secureSmtpUsername;
json[r'secureSmtpPassword'] = this.secureSmtpPassword;
json[r'smtpServerHost'] = this.smtpServerHost;
json[r'smtpServerPort'] = this.smtpServerPort;
json[r'smtpUsername'] = this.smtpUsername;
json[r'smtpPassword'] = this.smtpPassword;
json[r'imapServerHost'] = this.imapServerHost;
json[r'imapServerPort'] = this.imapServerPort;
json[r'imapUsername'] = this.imapUsername;
json[r'imapPassword'] = this.imapPassword;
return json;
}