escape property

Object? get escape

The character used to do character escaping. If a string is provided only spaces are escaped. If a { escapeChar, charsToEscape } literal is provide all characters in charsToEscape are escaped using the escapeChar.

Implementation

_i2.Object? get escape => _i5.getProperty(
      this,
      'escape',
    );
set escape (Object? value)

Implementation

set escape(_i2.Object? value) {
  _i5.setProperty(
    this,
    'escape',
    value ?? _i6.undefined,
  );
}