6 lines
129 B
Dart
6 lines
129 B
Dart
|
|
import 'package:get/get.dart';
|
||
|
|
|
||
|
|
class LowBatteryReminderState {
|
||
|
|
var isLowBatteryNotify = false.obs; // 是否低电量提醒
|
||
|
|
}
|