Tree constructor

Tree({
  1. String? sha,
  2. String? url,
  3. String? htmlUrl,
})

Implementation

Tree({
  this.sha,
  this.url,
  this.htmlUrl,
});