getJsonList abstract method

Future<CacheResponse<List<Map<String, dynamic>>?>> getJsonList({
  1. required String key,
})
inherited

Retrieves a list of JSON maps from the cache associated with the specified key.

This method returns a List<Map<String, dynamic>>?. If the data exists for the key, it returns the list of JSON maps; otherwise, it returns null if no data is found.

Implementation

Future<CacheResponse<List<Map<String, dynamic>>?>> getJsonList({required String key});