18 lines
263 B
Dart
18 lines
263 B
Dart
|
|
|
|
import 'package:rasadyar_core/core.dart';
|
|
|
|
class RoleLogic extends GetxController {
|
|
@override
|
|
void onReady() {
|
|
// TODO: implement onReady
|
|
super.onReady();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
// TODO: implement onClose
|
|
super.onClose();
|
|
}
|
|
}
|