put method
Put is like set, but it's not assumed that the data has been sanitized
Implementation
@override
void put(JsonPath path, value, {required AttributeSource source}) {
_put(path, value);
_changeStream.add(Attribute(path, value, source: source));
clearError(path, source: source);
if (source == AttributeSource.control) {
_isModified = true;
}
}