ReleaseNotesModel constructor

const ReleaseNotesModel({
  1. String? notes,
  2. String? version,
  3. bool isLatestVersion = false,
})

Implementation

const ReleaseNotesModel({
  this.notes,
  this.version,
  this.isLatestVersion = false,
});