identifier property

  1. @JsonKey(name: 'identifier')
String? identifier
getter/setter pair

We don't know whether the identifier will be a string, a uint, or a long... so we're going to cast it all to a string. But either way, we need any trending item created to have a single unique identifier for its type.

Implementation

@JsonKey(name:'identifier')
String? identifier;