getAllWithPrefix method
- @override
- @Deprecated('Use getAllWithParameters instead')
override
Returns all key/value pairs persisting in this store that have given prefix
.
Implementation
@override
@Deprecated('Use getAllWithParameters instead')
Future<Map<String, Object>> getAllWithPrefix(
String prefix, {
Set<String>? allowList,
}) async {
return getAllWithParameters(
GetAllParameters(
filter: PreferencesFilter(prefix: prefix),
),
);
}