FunctionCallExpression<R extends Object> constructor

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

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

Implementation

const FunctionCallExpression(this.functionName, this.arguments);