Literal constructor

Literal(
  1. dynamic value, [
  2. String? raw
])

Implementation

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