Query.withArgs constructor

Query.withArgs(
  1. {required String text,
  2. required ResultType resultType,
  3. QueryArguments? args}
)

deno-postgres@v0.17.0/Query/constructor. deno-postgres@v0.17.0/Query/constructor.

Implementation

factory Query.withArgs({
  required String text,
  required ResultType resultType,
  QueryArguments? args,
}) =>
    callConstructor('Query', [text, resultType, args]) as Query;