getFromLocalStorage static method

String? getFromLocalStorage(
  1. String key
)

Implementation

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