JSON_VALUE function

TypedValue<Object> JSON_VALUE(
  1. dynamic value
)

value will been json.encode(value), before send to database

Implementation

pg.TypedValue JSON_VALUE(dynamic value) => pg.TypedValue(pg.Type.json, value);