20 lines
317 B
Dart
20 lines
317 B
Dart
import 'package:get/get.dart';
|
|
|
|
import 'user_state.dart';
|
|
|
|
class UserLogic extends GetxController {
|
|
final UserState state = UserState();
|
|
|
|
@override
|
|
void onReady() {
|
|
// TODO: implement onReady
|
|
super.onReady();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
// TODO: implement onClose
|
|
super.onClose();
|
|
}
|
|
}
|