CodeBuffer constructor

CodeBuffer({
  1. String space = ' ',
  2. String newline = '\n',
  3. bool trailingNewline = false,
  4. dynamic sourceUrl,
})

Implementation

CodeBuffer(
    {this.space = '  ',
    this.newline = '\n',
    this.trailingNewline = false,
    this.sourceUrl});