SeatInfo constructor

SeatInfo({
  1. int index = 0,
  2. String userId = '',
  3. String avatarUrl = '',
  4. String userName = '',
  5. bool isLocked = false,
  6. bool isAudioLocked = false,
})

Implementation

SeatInfo(
    {this.index = 0,
    this.userId = '',
    this.avatarUrl = '',
    this.userName = '',
    this.isLocked = false,
    this.isAudioLocked = false});