extract method

Map<String, dynamic> extract([
  1. String path = ''
])

Returns a map of all values in the data store under the given path.

Implementation

Map<String, dynamic> extract([String path = '']) {
  return {
    ..._plaintextStore.extract(path),
    ..._encryptedStore.extract(path),
  };
}