fromCache static method

String? fromCache(
  1. String key
)

Get cached string

Implementation

static String? fromCache(String key) {
  return EaseXCache.getCachedData<String>(key);
}