operator []= method

void operator []=(
  1. T key,
  2. JsonRow values
)

Sets the JsonRow with the specified key to the given values.

Implementation

void operator []=(T key, JsonRow values) => add(values..[keyName] = key);