CommitLogEntry constructor

CommitLogEntry({
  1. CommitAuthor? author,
  2. String? commitMessage,
  3. String? commitSha,
  4. String? commitTime,
})

Implementation

CommitLogEntry({
  this.author,
  this.commitMessage,
  this.commitSha,
  this.commitTime,
});