SelectedUser constructor

SelectedUser(
  1. {String? id,
  2. required String uuid,
  3. String? profileNickname,
  4. String? profileThumbnailImage,
  5. bool? favorite}
)

Implementation

SelectedUser({
  this.id,
  required this.uuid,
  this.profileNickname,
  this.profileThumbnailImage,
  this.favorite,
});