getStorageList static method

List getStorageList(
  1. String key
)

Implementation

static List getStorageList(String key) {
  if(getStorage == null) setStorage();
  return getStorage!.read(key) ?? [];
}