Genre constructor

Genre({
  1. String id = "",
  2. String name = "",
  3. String description = "",
  4. bool isMain = false,
  5. bool isFavorite = false,
})

Implementation

Genre({
  this.id = "",
  this.name = "",
  this.description = "",
  this.isMain = false,
  this.isFavorite = false
});