This commit is contained in:
Henry Hiles 2025-08-01 20:10:34 -04:00
commit 64dd38f7aa
No known key found for this signature in database
6 changed files with 265 additions and 2 deletions

View file

View file

@ -0,0 +1,12 @@
import "package:riverpod/riverpod.dart";
class LastSyncedController extends Notifier<String?> {
@override
String? build() => null;
void set(String value) => state = value;
static final provider = NotifierProvider<LastSyncedController, String?>(
LastSyncedController.new,
);
}