markSeen static method

Future<void> markSeen()

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);
}