tags property
Gets the tags associated with the entry.
Returns a map of tags. If no tags are present, returns an empty map.
Implementation
Map<String, dynamic> get tags {
final tags = _list.getTags(_pos);
return (tags.isEmpty) ? {} : jsonDecode(tags);
}