ReleaseCommentCompact constructor

const ReleaseCommentCompact({
  1. required int id,
  2. ProfileSlim? profile,
  3. String? message,
  4. bool? isSpoiler,
  5. ReleaseCompact? release,
  6. int? embeddableId,
  7. String? embeddableTitle,
})

Implementation

const ReleaseCommentCompact({
  required this.id,
  this.profile,
  this.message,
  this.isSpoiler,
  this.release,
  this.embeddableId,
  this.embeddableTitle,
});