CodeBuffer.noWhitespace constructor

CodeBuffer.noWhitespace({
  1. dynamic sourceUrl,
})

Creates a CodeBuffer that does not emit additional whitespace.

Implementation

factory CodeBuffer.noWhitespace({sourceUrl}) => CodeBuffer(
    space: '', newline: '', trailingNewline: false, sourceUrl: sourceUrl);