saveStringList abstract method
Saves a list of strings in the cache with the specified key
.
This method is asynchronous and returns a Future<void>
that completes
when the operation is finished. The data must be a list of strings.
Implementation
Future<void> saveStringList({required String key, required List<String> data});