toSQL method

  1. @override
String toSQL()
override

Returns the raw mathematical expression as-is.

Example:

QMath('COUNT(*)').toSQL(); // "COUNT(*)"

Implementation

@override
String toSQL() {
  return math;
}