tags property

List<String> tags

Returns the sorted list of tags, each of which with only 1 occurrence.

Implementation

List<String> get tags =>
    List.unmodifiable(SplayTreeSet<String>.from(_tags).toList());