getJsonList abstract method
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});