toSQL<T extends SqlType> method
Returns the SQL for the single condition without extra parentheses.
Example:
WhereOne(QField('age'), QO.GT, QVar(18)).toSQL(); // "( `age` > 18 )"
Implementation
@override
String toSQL<T extends SqlType>() {
return _whereBodies.first.toSQL<T>();
}