getList method

Future<List?> getList(
  1. String key
)

Implementation

Future<List<dynamic>?> getList(String key) async {
  return await SharedMemoryCache.getList(key);
}