FunctionCallExpression<R> constructor

FunctionCallExpression<R>(
  1. String functionName,
  2. List<Expression> arguments
)

Constructs a function call expression in sql from the functionName and the target arguments.

Implementation

FunctionCallExpression(this.functionName, this.arguments);