CoinDeveloperData.fromJson constructor

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

Implementation

CoinDeveloperData.fromJson(Map<String, dynamic> json)
    : this.forks = Convert.toIntN(json['forks']),
      this.stars = Convert.toIntN(json['stars']),
      this.subscribers = Convert.toIntN(json['subscribers']),
      this.totalIssues = Convert.toIntN(json['total_issues']),
      this.closedIssues = Convert.toIntN(json['closed_issues']),
      this.pullRequestsMerged = Convert.toIntN(json['pull_requests_merged']),
      this.pullRequestContributors =
          Convert.toIntN(json['pull_request_contributors']),
      this.codeAdditionsDeletions4Weeks =
          json.containsKey('code_additions_deletions_4_weeks')
              ? CoinDeveloperDataCodeChanges.fromJson(
                  json['code_additions_deletions_4_weeks'])
              : null,
      this.commitCount4Weeks = Convert.toIntN(json['commit_count_4_weeks']),
      this.last4WeeksCommitActivitySeries =
          Convert.toListOfInt(json['last_4_weeks_commit_activity_series']);