Instrument constructor

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

Implementation

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