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