getStringList abstract method
Retrieves a list of strings from the cache associated with the specified key
.
This method is asynchronous and returns a Future<List<String>?>
.
If the data exists for the key
, it returns the list; otherwise,
it returns null
if no data is found.
Implementation
Future<CacheResponse<List<String>?>> getStringList({required String key});