clearError method
Removes all errors at this path
Implementation
@override
void clearError(JsonPath path, {required AttributeSource source}) {
errors.remove(path);
// pushes a change with the error cleared
_changeStream
.add(Attribute(path, get(path), source: source, clearErrors: true));
}