EntryObject constructor

EntryObject({
  1. required String name,
  2. required dynamic value,
  3. required Map<String, dynamic> tags,
  4. required String category,
})

Constructs an instance of EntryObject.

Implementation

EntryObject({
  required this.name,
  required this.value,
  required this.tags,
  required this.category,
});