Current consecutive-day streak.
static Future<int> currentStreak() async { final box = await _openBox(); return (box.get(_streakKey) as int?) ?? 0; }