TIF_E41202535/lib/core/data/model/item.dart

11 lines
194 B
Dart

class Item {
Item({
required this.expandedValue,
required this.headerValue,
this.isExpanded = false,
});
List<String> expandedValue;
String headerValue;
bool isExpanded;
}