jsonbGroupObject function

Expression<Uint8List> jsonbGroupObject(
  1. Map<Expression<String>, Expression<Object>> values
)

Returns a binary representation of a JSON object consisting of the provided keys and values in the current group.

See jsonGroupObject, the variant of this function returning a textual description, for more details and an example.

Implementation

Expression<Uint8List> jsonbGroupObject(
    Map<Expression<String>, Expression> values) {
  return FunctionCallExpression('jsonb_group_object', _groupObjectArgs(values));
}