CommitData constructor

CommitData(
  1. String? sha,
  2. GitCommit? commit,
  3. String? url,
  4. String? htmlUrl,
  5. String? commentsUrl,
  6. CommitDataUser? author,
  7. CommitDataUser? committer,
  8. List<Map<String, dynamic>>? parents,
)

Implementation

CommitData(
  this.sha,
  this.commit,
  this.url,
  this.htmlUrl,
  this.commentsUrl,
  this.author,
  this.committer,
  this.parents,
);