getStorageString static method

String getStorageString(
  1. String key
)

Implementation

static String getStorageString(String key) {
  if(getStorage == null) setStorage();
  return  getStorage!.read(key) ?? '';
}