20 lines
331 B
Dart
Executable File
20 lines
331 B
Dart
Executable File
|
|
|
|
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();
|
|
}
|
|
|
|
} |