20 lines
331 B
Dart
20 lines
331 B
Dart
|
|
|
||
|
|
|
||
|
|
import 'package:star_lock/tools/baseGetXController.dart';
|
||
|
|
|
||
|
|
import 'remoteControlList_state.dart';
|
||
|
|
|
||
|
|
class RemoteControlListLogic extends BaseGetXController{
|
||
|
|
RemoteControlListState state = RemoteControlListState();
|
||
|
|
|
||
|
|
@override
|
||
|
|
void onInit() {
|
||
|
|
super.onInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
@override
|
||
|
|
void onClose() {
|
||
|
|
super.onClose();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|