init static method
Initializes the local persistence engine (SharedPreferences).
Required before accessing persistentState.
E.g., await WhaleStorage.init(); early in main().
Implementation
static Future<void> init() async {
_prefs = await SharedPreferences.getInstance();
}