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