CommitFile constructor

CommitFile(
  1. {String? name,
  2. int? additions,
  3. int? deletions,
  4. int? changes,
  5. String? status,
  6. String? rawUrl,
  7. String? blobUrl,
  8. String? patch}
)

Implementation

CommitFile({
  this.name,
  this.additions,
  this.deletions,
  this.changes,
  this.status,
  this.rawUrl,
  this.blobUrl,
  this.patch,
});