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