Time static method

Expr Time(
  1. Expr exp
)

Implementation

static Expr Time(Expr exp) {
  return new FunctionExpression("time", [exp])..fieldType = dbType.DateTime;
}