IChunk constructor

const IChunk({
  1. required int index,
  2. required String content,
  3. String postContent = "",
  4. int charStart = 0,
  5. int charEnd = 0,
  6. int lod = 0,
  7. List<int> from = const [],
})

Implementation

const IChunk({
  required this.index,
  required this.content,
  this.postContent = "",
  this.charStart = 0,
  this.charEnd = 0,
  this.lod = 0,
  this.from = const [],
});