BedrockPatchNoteEntry constructor

BedrockPatchNoteEntry({
  1. String? title,
  2. String? version,
  3. String? patchNoteType,
  4. String? date,
  5. BedrockPatchNoteImage? image,
  6. String? body,
  7. String? id,
  8. required String contentPath,
})

Implementation

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