jsonb method

Expression<Uint8List> jsonb()

Reads this expression as a JSON structure and outputs the JSON in a binary format internal to sqlite3.

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

Implementation

Expression<Uint8List> jsonb() {
  return FunctionCallExpression('jsonb', [this]);
}