VersionUnresolvedIssuesCount.fromJson constructor

VersionUnresolvedIssuesCount.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory VersionUnresolvedIssuesCount.fromJson(Map<String, Object?> json) {
  return VersionUnresolvedIssuesCount(
    issuesCount: (json[r'issuesCount'] as num?)?.toInt(),
    issuesUnresolvedCount: (json[r'issuesUnresolvedCount'] as num?)?.toInt(),
    self: json[r'self'] as String?,
  );
}