mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
14 lines
267 B
Dart
14 lines
267 B
Dart
import 'package:toolbox/core/provider_base.dart';
|
|
|
|
class AppProvider extends BusyProvider {
|
|
int? _newestBuild;
|
|
int? get newestBuild => _newestBuild;
|
|
|
|
bool moveBg = true;
|
|
|
|
void setNewestBuild(int build) {
|
|
_newestBuild = build;
|
|
notifyListeners();
|
|
}
|
|
}
|