getAllWithPrefix method

  1. @override
Future<Map<String, Object>> getAllWithPrefix(
  1. String prefix
)
override

Returns all key/value pairs persisting in this store that have given prefix.

Implementation

@override
Future<Map<String, Object>> getAllWithPrefix(String prefix) async {
  return getAllWithParameters(
      GetAllParameters(filter: PreferencesFilter(prefix: prefix)));
}