getAll method

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

Returns all key/value pairs persisted in this store.

Implementation

@override
Future<Map<String, Object>> getAll() async {
  return Map<String, Object>.from(_data);
}