jsonSetPath method

void jsonSetPath(
  1. String column,
  2. String path,
  3. Object? value
)
inherited

Queues a JSON update by explicitly providing path relative to column.

Implementation

void jsonSetPath(String column, String path, Object? value) =>
    _asAttributes.setJsonAttributeValue(column, value, pathOverride: path);