writePath method

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

Implementation

void writePath(String path, dynamic value) {
  if (_store.get(path) != value) {
    _store.write(path, value);
    isDirty = true;
  }
}