FileReadOutput constructor

const FileReadOutput({
  1. required String content,
  2. int lineCount = 0,
  3. bool truncated = false,
  4. bool binary = false,
  5. String encoding = 'utf-8',
  6. int size = 0,
  7. DateTime? modified,
})

Implementation

const FileReadOutput({
  required this.content,
  this.lineCount = 0,
  this.truncated = false,
  this.binary = false,
  this.encoding = 'utf-8',
  this.size = 0,
  this.modified,
});