firstRun property

bool get firstRun

Implementation

bool get firstRun => storage.getBool(keyFirstRun) ?? true;
set firstRun (bool value)

Implementation

set firstRun(bool value) => storage.setBool(keyFirstRun, value);