JavaPatchNoteContent constructor

JavaPatchNoteContent({
  1. String? title,
  2. String? version,
  3. String? body,
  4. String? type,
  5. String? id,
  6. JavaPatchNoteImage? image,
})

Implementation

JavaPatchNoteContent({
  this.title,
  this.version,
  this.body,
  this.type,
  this.id,
  this.image,
});