Initial commit

This commit is contained in:
2025-12-08 23:25:00 +05:00
commit ee5cb4ac1a
851 changed files with 115172 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import 'package:get/get.dart';
class DriverOrderListController extends GetxController {
RxString driverId = "".obs;
RxString serviceType = "".obs;
@override
void onInit() {
super.onInit();
final args = Get.arguments;
if (args != null) {
if (args['driverId'] != null) {
driverId.value = args['driverId'];
}
if (args['serviceType'] != null) {
serviceType.value = args['serviceType'];
}
}
}
}