toJson method

Map<String, dynamic> toJson()

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,
  };
}