HeredocInfo constructor

const HeredocInfo({
  1. required String delimiter,
  2. required String content,
  3. bool stripTabs = false,
  4. bool quoted = false,
})

Implementation

const HeredocInfo({
  required this.delimiter,
  required this.content,
  this.stripTabs = false,
  this.quoted = false,
});