CreateGitTreeEntry constructor

CreateGitTreeEntry(
  1. String? path,
  2. String? mode,
  3. String? type, {
  4. String? sha,
  5. String? content,
})

Constructor. Either sha or content must be defined.

Implementation

CreateGitTreeEntry(
  this.path,
  this.mode,
  this.type, {
  this.sha,
  this.content,
});