toSQL method

  1. @override
String toSQL()
override

Returns the string value wrapped in quotes.

Example:

QSelectString('Hello, World!').toSQL(); // "'Hello, World!'"

Implementation

@override
String toSQL() {
  return value;
}