ItemIssueSeverity.fromJson constructor
      
      ItemIssueSeverity.fromJson(
    
    
- Map json_
 
Implementation
ItemIssueSeverity.fromJson(core.Map json_)
  : this(
      aggregatedSeverity: json_['aggregatedSeverity'] as core.String?,
      severityPerReportingContext:
          (json_['severityPerReportingContext'] as core.List?)
              ?.map(
                (value) => IssueSeverityPerReportingContext.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );