TUISeatInfo constructor

TUISeatInfo({
  1. required int index,
  2. required String userId,
  3. bool? isLocked,
  4. bool? isVideoLocked,
  5. bool? isAudioLocked,
})

Implementation

TUISeatInfo({
  required this.index,
  required this.userId,
  this.isLocked,
  this.isVideoLocked,
  this.isAudioLocked,
});