toSQL<R extends SqlType> method

  1. @override
String toSQL<R extends SqlType>()
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<R extends SqlType>() {
  return _to<R>(value);
}