29 lines
522 B
Dart
Executable File
29 lines
522 B
Dart
Executable File
import 'package:star_lock/main/lockDetail/iris/addIris/addIris_state.dart';
|
|
|
|
import '../../../../../tools/baseGetXController.dart';
|
|
|
|
class AddIrisLogic extends BaseGetXController {
|
|
final AddIrisState state = AddIrisState();
|
|
|
|
@override
|
|
void onReady() {
|
|
super.onReady();
|
|
|
|
// _initReplySubscription();
|
|
}
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
//开始添加后发送指令
|
|
// senderAddFace();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
super.onClose();
|
|
|
|
// _replySubscription.cancel();
|
|
}
|
|
}
|