markSeen static method
Marks the tutorial as seen so it won't appear again.
Implementation
static Future<void> markSeen() async {
final box = await Hive.openBox(_hiveBox);
await box.put(_hiveKey, true);
}
Marks the tutorial as seen so it won't appear again.
static Future<void> markSeen() async {
final box = await Hive.openBox(_hiveBox);
await box.put(_hiveKey, true);
}