Literal constructor
Literal(
- dynamic value, [
- String? raw
Implementation
Literal(
this.value, [
String? raw,
]) : raw = raw ?? (value is String ? '"$value"' /*TODO escape*/ : '$value');