Commit constructor

Commit({
  1. String? additionalData,
  2. UserInfo? author,
  3. String? commitId,
  4. UserInfo? committer,
  5. String? message,
  6. List<String>? parents,
  7. String? treeId,
})

Implementation

Commit({
  this.additionalData,
  this.author,
  this.commitId,
  this.committer,
  this.message,
  this.parents,
  this.treeId,
});