counts property

Map<String, int> get counts

Implementation

Map<String, int> get counts => {
  'total': issues.length,
  'errors': errors.length,
  'warnings': warnings.length,
  'infos': infos.length,
  'visible': visibleIssues.length,
  'hidden': issues.length - visibleIssues.length,
};