Gist constructor

Gist(
  1. {String? id,
  2. String? description,
  3. bool? public,
  4. User? owner,
  5. User? user,
  6. List<GistFile>? files,
  7. String? htmlUrl,
  8. int? commentsCount,
  9. String? gitPullUrl,
  10. String? gitPushUrl,
  11. DateTime? createdAt,
  12. DateTime? updatedAt}
)

Implementation

Gist({
  this.id,
  this.description,
  this.public,
  this.owner,
  this.user,
  this.files,
  this.htmlUrl,
  this.commentsCount,
  this.gitPullUrl,
  this.gitPushUrl,
  this.createdAt,
  this.updatedAt,
});