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

16 lines
249 B
Dart
Raw Normal View History

2025-06-30 10:36:30 +03:30
import 'package:get/get.dart';
class BuyLogic extends GetxController {
@override
void onReady() {
// TODO: implement onReady
super.onReady();
}
@override
void onClose() {
// TODO: implement onClose
super.onClose();
}
}