json method

Expression<String> json()

Reads this binary JSONB structure and emits its textual representation as minified JSON.

For details, see https://www.sqlite.org/json1.html#jmini.

Implementation

Expression<String> json() {
  return dartCast<String>().json();
}