CreateGitCommit constructor

CreateGitCommit(
  1. String? message,
  2. String? tree, {
  3. List<String?>? parents,
  4. GitCommitUser? committer,
  5. GitCommitUser? author,
})

Implementation

CreateGitCommit(
  this.message,
  this.tree, {
  this.parents,
  this.committer,
  this.author,
});