Gets the index of the highest level the user has unlocked
Source
int get unlocked => window.localStorage.containsKey("unlocked") ? int.parse(window.localStorage["unlocked"]) : 0;
Gets the index of the highest level the user has unlocked
int get unlocked => window.localStorage.containsKey("unlocked") ? int.parse(window.localStorage["unlocked"]) : 0;