PatchNoteEntry constructor

PatchNoteEntry({
  1. String? title,
  2. String? version,
  3. String? date,
  4. ImageInfo? image,
  5. String? body,
  6. String? id,
  7. required String contentPath,
})

Implementation

PatchNoteEntry({
  this.title,
  this.version,
  this.date,
  this.image,
  this.body,
  this.id,
  required this.contentPath,
});