Files
rasadyar_application/packages/chicken/lib/presentation/pages/buy/logic.dart

26 lines
454 B
Dart
Raw Normal View History

2025-06-30 16:18:12 +03:30
import 'package:rasadyar_chicken/chicken.dart';
import 'package:rasadyar_core/core.dart';
2025-06-30 10:36:30 +03:30
class BuyLogic extends GetxController {
2025-06-30 16:18:12 +03:30
RootLogic rootLogic = Get.find<RootLogic>();
2025-07-14 09:27:13 +03:30
List<String> routesName = ['خرید'];
2025-06-30 16:18:12 +03:30
@override
void onInit() {
super.onInit();
}
2025-06-30 10:36:30 +03:30
@override
void onReady() {
// TODO: implement onReady
super.onReady();
}
@override
void onClose() {
// TODO: implement onClose
super.onClose();
}
}