toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final entityUniqueId = this.entityUniqueId;
final sentiment = this.sentiment;
final type = this.type;
return {
'entityUniqueId': ?entityUniqueId,
'sentiment': ?sentiment,
'type': ?type,
};
}