Files

16 lines
250 B
Dart
Raw Permalink Normal View History

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