26 lines
454 B
Dart
26 lines
454 B
Dart
import 'package:rasadyar_chicken/chicken.dart';
|
|
import 'package:rasadyar_core/core.dart';
|
|
|
|
class BuyLogic extends GetxController {
|
|
RootLogic rootLogic = Get.find<RootLogic>();
|
|
|
|
List<String> routesName = ['خرید'];
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
}
|
|
|
|
@override
|
|
void onReady() {
|
|
// TODO: implement onReady
|
|
super.onReady();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
// TODO: implement onClose
|
|
super.onClose();
|
|
}
|
|
}
|