TUIUserInfo constructor

TUIUserInfo({
  1. required String userId,
  2. required String userName,
  3. required String avatarUrl,
  4. required TUIRole userRole,
  5. bool? hasAudioStream,
  6. bool? hasVideoStream,
  7. bool? hasScreenStream,
  8. Map<String, String>? customInfo,
  9. bool? isMessageDisabled,
})

Implementation

TUIUserInfo({
  required this.userId,
  required this.userName,
  required this.avatarUrl,
  required this.userRole,
  this.hasAudioStream,
  this.hasVideoStream,
  this.hasScreenStream,
  this.customInfo,
  this.isMessageDisabled,
});