writePath method

void writePath(
  1. String resolverPath,
  2. String path,
  3. dynamic value
)

Implementation

void writePath(String resolverPath, String path, dynamic value) async {
  _assertHydrated();

  ValueStore? store = _storeResolver.get(resolverPath) ??
      _storeResolver.write(resolverPath, ValueStore());
  store.write(path, value);

  isDirty = true;
}