toSQL method

  1. @override
String toSQL()
override

Converts this value to its SQL string representation.

Delegates to the static _to method for the actual conversion.

Returns the SQL-safe string representation of the value.

Implementation

@override
String toSQL() {
  return QVar._to<T>(value);
}