getStorageInteger static method

int getStorageInteger(
  1. String key
)

Implementation

static int getStorageInteger(String key) {
  if(getStorage == null) setStorage();
  return getStorage!.read(key) ?? 0;
}