fromCache<T> static method

List<T>? fromCache<T>(
  1. String key
)

Get cached list

Implementation

static List<T>? fromCache<T>(String key) {
  return EaseXCache.getCachedList<T>(key);
}