User constructor
User(
- int id,
- String name,
- String account,
- ProfileImageUrls profileImageUrls,
- bool? isFollowed,
Implementation
User(
this.id,
this.name,
this.account,
this.profileImageUrls,
this.isFollowed,
);