import '../../presentation/components/assets/assets.gen.dart'; class Service { Service({ required this.name, required this.description, required this.imagePath, }); final String name; final String imagePath; final String description; } List services = [ Service( name: 'Dine In', description: 'Makan langsung di tempat', imagePath: Assets.icons.dineIn.path, ), Service( name: 'Take Away', description: 'Pesan dan bawa pulang', imagePath: Assets.icons.takeaway.path, ), ];