toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'domain'] = this.domain;
json[r'version'] = this.version;
json[r'logoUrl'] = this.logoUrl;
if (this.vmcUrl != null) {
json[r'vmcUrl'] = this.vmcUrl;
} else {
json[r'vmcUrl'] = null;
}
return json;
}