GistFile constructor

GistFile({
  1. String? name,
  2. int? size,
  3. String? rawUrl,
  4. String? type,
  5. String? language,
  6. bool? truncated,
  7. String? content,
})

Implementation

GistFile({
  this.name,
  this.size,
  this.rawUrl,
  this.type,
  this.language,
  this.truncated,
  this.content,
});