setStringList method
Saves or overwrites a List<String> value.
Implementation
Future<void> setStringList(String key, List<String> value) async {
try {
await _store.setStringList(key, value);
} catch (e, st) {
throw StorageException(
message: 'Failed to set StringList',
key: key,
cause: e,
stackTrace: st,
);
}
}