tagss property

List<TextFieldWrapper> get tagss

Tags for the document

Implementation

List<TextFieldWrapper> get tagss => document
    .fieldsByTypeName("Tags")
    .map((field) => TextFieldWrapper(field))
    .toList();