RubyHeredoc constructor

RubyHeredoc({
  1. List<int>? word,
  2. bool endWordIndentationAllowed = false,
  3. bool allowsInterpolation = false,
  4. bool started = false,
})

Implementation

RubyHeredoc({
  List<int>? word,
  this.endWordIndentationAllowed = false,
  this.allowsInterpolation = false,
  this.started = false,
}) : word = word ?? <int>[];