jsonPatch method

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

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

Implementation

void jsonPatch(String column, Map<String, Object?> delta) =>
    _asAttributes.setJsonAttributePatch(column, delta);