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