SassString constructor

SassString(
  1. String _text, {
  2. bool quotes = true,
})

Creates a string with the given text.

Implementation

SassString(this._text, {bool quotes = true}) : _hasQuotes = quotes;