14 lines
219 B
Dart
14 lines
219 B
Dart
|
class Item {
|
||
|
Item({
|
||
|
required this.title,
|
||
|
required this.description,
|
||
|
required this.id,
|
||
|
required this.price,
|
||
|
});
|
||
|
|
||
|
final String title;
|
||
|
final String description;
|
||
|
final int price;
|
||
|
final int id;
|
||
|
}
|