Commit constructor

Commit({
  1. String? hash,
  2. String? url,
  3. String? authorEmail,
  4. String? authorAvatarUrl,
  5. String? authorName,
  6. String? commmiterName,
  7. String? commmiterEmail,
  8. String? commitMessage,
  9. String? branch,
  10. required bool isPoolRequest,
  11. String? pullRequestNumber,
})

Implementation

Commit({
  this.hash,
  this.url,
  this.authorEmail,
  this.authorAvatarUrl,
  this.authorName,
  this.commmiterName,
  this.commmiterEmail,
  this.commitMessage,
  this.branch,
  required this.isPoolRequest,
  this.pullRequestNumber,
});