Chunk constructor

const Chunk(
  1. int id,
  2. int start,
  3. int length,
  4. String content,
)

Creates a new chunk with the specified parameters.

Implementation

const Chunk(this.id, this.start, this.length, this.content);