UserInfo constructor

UserInfo(
  1. int id,
  2. String name,
  3. String account,
  4. ProfileImageUrls profileImageUrls,
  5. String? comment,
  6. bool isFollowed,
)

Implementation

UserInfo(
  this.id,
  this.name,
  this.account,
  this.profileImageUrls,
  this.comment,
  this.isFollowed,
);