StringLiteral constructor

const StringLiteral(
  1. String value, {
  2. String quotes = "'",
  3. bool raw = false,
  4. bool escape = true,
})

Implementation

const StringLiteral(
  this.value, {
  this.quotes = "'",
  this.raw = false,
  this.escape = true,
});