Instrument constructor

Instrument({
  1. String id = "",
  2. String name = "",
  3. String description = "",
  4. InstrumentLevel instrumentLevel = InstrumentLevel.notDetermined,
  5. String model = "",
  6. bool isMain = false,
  7. bool isFavorite = false,
})

Implementation

Instrument({
  this.id = "",
  this.name = "",
  this.description = "",
  this.instrumentLevel = InstrumentLevel.notDetermined,
  this.model = "",
  this.isMain = false,
  this.isFavorite = false
});