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