tutorialCompleted property

bool tutorialCompleted

completed tutorial?

Implementation

bool get tutorialCompleted => items
        .where((i) => i.templateId == "Quest:homebaseonboarding")
        .isEmpty
    ? false
    : (items
                .firstWhere((i) => i.templateId == "Quest:homebaseonboarding")
                .attributes["completion_hbonboarding_completezone"] ??
            0) >
        0;