getStringList method
Returns the stored List<String>, or defaultValue if not found.
Implementation
List<String>? getStringList(String key, {List<String>? defaultValue}) {
try {
return _store.getStringList(key) ?? defaultValue;
} catch (e, st) {
throw StorageException(
message: 'Failed to get StringList',
key: key,
cause: e,
stackTrace: st,
);
}
}