getItem static method

dynamic getItem(
  1. String key
)

Implementation

static getItem(String key) {
  if (_localStorage == null) return null;
  return _localStorage!.getItem(key);
}