setByPath<T> method

void setByPath<T>(
  1. JsonPath<T> path,
  2. T? value
)
override

Implementation

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