TextValue constructor

const TextValue(
  1. String value, {
  2. bool escapeCharacters = true,
})

Implementation

const TextValue(
  String value, {
  this.escapeCharacters = true,
}) : super(value, ValueType.text);