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