tags property

Map<String, dynamic> get tags

Gets the tags associated with the key 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);
}