27 lines
538 B
Dart
27 lines
538 B
Dart
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<Service> 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,
|
|
),
|
|
];
|