toSQL<R extends SqlType> method
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<R extends SqlType>() {
return _to<R>(value);
}