fromCache static method

Map<String, dynamic>? fromCache(
  1. String key
)

Get cached map

Implementation

static Map<String, dynamic>? fromCache(String key) {
  return EaseXCache.getCachedMap(key);
}