setJsonAttributePatch method

void setJsonAttributePatch(
  1. String column,
  2. Map<String, Object?> delta
)
inherited

Queues a JSON patch merge for column with the provided delta map.

Implementation

void setJsonAttributePatch(String column, Map<String, Object?> delta) {
  setJsonAttributeValue(column, delta, pathOverride: r'$', patch: true);
}