RecommendationSummary.fromJson constructor

RecommendationSummary.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RecommendationSummary.fromJson(Map<String, dynamic> json) {
  return RecommendationSummary(
    description: json['Description'] as String?,
    endLine: json['EndLine'] as int?,
    filePath: json['FilePath'] as String?,
    recommendationId: json['RecommendationId'] as String?,
    startLine: json['StartLine'] as int?,
  );
}