toSQL<T extends SqlType> method

  1. @override
String toSQL<T extends SqlType>()
override

Returns the raw mathematical expression as-is.

Example:

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

Implementation

@override
String toSQL<T extends SqlType>() {
  return math;
}