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