LicenseDetails constructor

LicenseDetails({
  1. String? name,
  2. String? path,
  3. String? sha,
  4. int? size,
  5. Uri? url,
  6. Uri? htmlUrl,
  7. Uri? gitUrl,
  8. Uri? downloadUrl,
  9. String? type,
  10. String? content,
  11. String? encoding,
  12. Links? links,
  13. LicenseKind? license,
})

Implementation

LicenseDetails(
    {this.name,
    this.path,
    this.sha,
    this.size,
    this.url,
    this.htmlUrl,
    this.gitUrl,
    this.downloadUrl,
    this.type,
    this.content,
    this.encoding,
    this.links,
    this.license});