GistHistoryEntry constructor

GistHistoryEntry({
  1. String? version,
  2. User? user,
  3. int? deletions,
  4. int? additions,
  5. int? totalChanges,
  6. DateTime? committedAt,
})

Implementation

GistHistoryEntry({
  this.version,
  this.user,
  this.deletions,
  this.additions,
  this.totalChanges,
  this.committedAt,
});