jsonSet method

void jsonSet(
  1. String selector,
  2. Object? value
)
inherited

Queues a JSON update using Laravel-style selector syntax (column->path). Call save to persist the change.

Implementation

void jsonSet(String selector, Object? value) =>
    _asAttributes.setJsonAttributeValue(selector, value);