15 lines
390 B
Dart
15 lines
390 B
Dart
|
|
import '../../presentation/components/assets/assets.gen.dart';
|
||
|
|
|
||
|
|
class Delivery {
|
||
|
|
String id;
|
||
|
|
String name;
|
||
|
|
String imageUrl;
|
||
|
|
|
||
|
|
Delivery({required this.id, required this.name, required this.imageUrl});
|
||
|
|
}
|
||
|
|
|
||
|
|
List<Delivery> deliveries = [
|
||
|
|
Delivery(id: 'gojek', name: 'Gojek', imageUrl: Assets.images.gojek.path),
|
||
|
|
Delivery(id: 'grab', name: 'Grab', imageUrl: Assets.images.grab.path),
|
||
|
|
];
|