display method
Same text is converted, no readable.
So, the method result is used for UI to display.
Implementation
@override
String display() {
final sb = StringBuffer();
sb.write(column);
sb.write(' $operator ');
sb.write(' ${value.toIso8601String()}');
return sb.toString();
}