11 lines
268 B
Dart
Executable File
11 lines
268 B
Dart
Executable File
import 'package:get/get.dart';
|
|
|
|
class LockEscalationState {
|
|
RxBool otaUpdateIng = false.obs;
|
|
RxDouble otaProgress = 0.00.obs;
|
|
RxBool isShowUpDataBtn = false.obs;
|
|
RxString showVersion = ''.obs;
|
|
RxString showNewVersion = ''.obs;
|
|
RxBool loading = true.obs;
|
|
}
|