InstrumentFulfillment constructor

InstrumentFulfillment({
  1. required String id,
  2. required Instrument instrument,
  3. bool isFulfilled = false,
  4. String profileId = "",
  5. String profileImgUrl = "",
  6. String profileName = "",
  7. VocalType vocalType = VocalType.none,
})

Implementation

InstrumentFulfillment({
  required this.id,
  required this.instrument,
  this.isFulfilled = false,
  this.profileId = "",
  this.profileImgUrl = "",
  this.profileName = "",
  this.vocalType = VocalType.none
});