DictionaryTag constructor

DictionaryTag(
  1. {required int dictionaryId,
  2. required String name,
  3. required String category,
  4. required int sortingOrder,
  5. required String notes,
  6. required double popularity}
)

Initiates a tag with given parameters.

Implementation

DictionaryTag({
  required this.dictionaryId,
  required this.name,
  required this.category,
  required this.sortingOrder,
  required this.notes,
  required this.popularity,
});