28 lines
413 B
Dart
Executable File
28 lines
413 B
Dart
Executable File
import 'package:star_lock/tools/baseGetXController.dart';
|
|
|
|
import 'lockAddressGaoDe_state.dart';
|
|
|
|
class LockAddressGaoDeLogic extends BaseGetXController{
|
|
LockAddressGaoDeState state = LockAddressGaoDeState();
|
|
|
|
void pushAddAction(){
|
|
|
|
}
|
|
|
|
@override
|
|
void onReady() {
|
|
super.onReady();
|
|
|
|
}
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
super.onClose();
|
|
}
|
|
|
|
} |