menu page
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class Service {
|
||||
Service({required this.name, required this.description});
|
||||
|
||||
final String name;
|
||||
final String description;
|
||||
}
|
||||
|
||||
List<Service> services = [
|
||||
Service(name: 'Dine In', description: 'Makan langsung di tempat'),
|
||||
Service(name: 'Take Away', description: 'Pesan dan bawa pulang'),
|
||||
];
|
||||
Reference in New Issue
Block a user