RepoFile constructor

const RepoFile({
  1. required String path,
  2. required String content,
  3. required int totalLines,
  4. int? startLine,
  5. int? endLine,
  6. bool truncated = false,
})

Implementation

const RepoFile({
  required this.path,
  required this.content,
  required this.totalLines,
  this.startLine,
  this.endLine,
  this.truncated = false,
});