User constructor

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

Implementation

User(
  this.id,
  this.name,
  this.account,
  this.profileImageUrls,
  this.isFollowed,
);