setByPath<T> method
Implementation
void setByPath<T>(JsonPath<T> path, T? value) {
if (value == "") value = null;
setDeep(this, path, value);
}
void setByPath<T>(JsonPath<T> path, T? value) {
if (value == "") value = null;
setDeep(this, path, value);
}