RecommendationSummary constructor

RecommendationSummary({
  1. String? description,
  2. int? endLine,
  3. String? filePath,
  4. String? recommendationId,
  5. int? startLine,
})

Implementation

RecommendationSummary({
  this.description,
  this.endLine,
  this.filePath,
  this.recommendationId,
  this.startLine,
});