11 lines
268 B
Dart
Raw Normal View History

import 'package:get/get.dart';
2024-01-23 17:36:02 +08:00
class LockEscalationState {
2024-05-31 14:28:52 +08:00
RxBool otaUpdateIng = false.obs;
RxDouble otaProgress = 0.00.obs;
RxBool isShowUpDataBtn = false.obs;
RxString showVersion = ''.obs;
RxString showNewVersion = ''.obs;
RxBool loading = true.obs;
2024-01-23 17:36:02 +08:00
}