CreateRepository constructor

CreateRepository(
  1. String? name,
  2. {String? description,
  3. String? homepage,
  4. bool? private,
  5. bool? hasIssues,
  6. bool? hasDownloads,
  7. int? teamId,
  8. bool? autoInit,
  9. String? gitignoreTemplate,
  10. String? licenseTemplate,
  11. bool? hasWiki}
)

Implementation

CreateRepository(this.name,
    {this.description,
    this.homepage,
    this.private,
    this.hasIssues,
    this.hasDownloads,
    this.teamId,
    this.autoInit,
    this.gitignoreTemplate,
    this.licenseTemplate,
    this.hasWiki});