LiquidConfig constructor

const LiquidConfig({
  1. String tagStart = '{%',
  2. String tagEnd = '%}',
  3. String varStart = '{{',
  4. String varEnd = '}}',
  5. String stripMarker = '-',
})

Creates a new LiquidConfig with the specified delimiters.

All parameters are optional and default to standard Liquid delimiters.

Implementation

const LiquidConfig({
  this.tagStart = '{%',
  this.tagEnd = '%}',
  this.varStart = '{{',
  this.varEnd = '}}',
  this.stripMarker = '-',
});