LspToolOutput constructor

const LspToolOutput({
  1. required String operation,
  2. required String result,
  3. required String filePath,
  4. int? resultCount,
  5. int? fileCount,
})

Implementation

const LspToolOutput({
  required this.operation,
  required this.result,
  required this.filePath,
  this.resultCount,
  this.fileCount,
});