ApiUserRoomResponse constructor

ApiUserRoomResponse({
  1. String? id,
  2. String? avatar,
  3. String? username,
  4. String? nickName,
  5. String? displayName,
  6. bool? isOnline,
  7. int? defautlStatus,
  8. List<String>? roles,
})

Implementation

ApiUserRoomResponse({
  this.id,
  this.avatar,
  this.username,
  this.nickName,
  this.displayName,
  this.isOnline,
  this.defautlStatus,
  this.roles,
});