toSQL<T extends SqlType> method

  1. @override
String toSQL<T 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<T extends SqlType>() {
  return 'NULL';
}