BandMember constructor

BandMember({
  1. String id = "",
  2. String name = "",
  3. String imgUrl = "",
  4. String profileId = "",
  5. Instrument? instrument,
  6. VocalType vocalType = VocalType.none,
  7. BandMemberRole role = BandMemberRole.member,
  8. bool isMuted = true,
})

Implementation

BandMember({
  this.id = "",
  this.name = "",
  this.imgUrl = "",
  this.profileId = "",
  this.instrument ,
  this.vocalType = VocalType.none,
  this.role = BandMemberRole.member,
  this.isMuted = true
});