static String? getFromLocalStorage(String key) { try { return html.window.localStorage[key]; } catch (e) { return null; } }