Profile constructor

Profile({
  1. bool? areFriends,
  2. bool? isFan,
  3. bool? isFollowing,
  4. bool? isFollowingReplurk,
  5. int? friendStatus,
  6. bool? blockedByMe,
  7. String? alias,
  8. bool? hasReadPermission,
  9. List<Plurk>? plurks,
  10. User? userInfo,
  11. int? friendsCount,
  12. int? fansCount,
  13. String? privacy,
  14. int? alertsCount,
  15. int? unreadCount,
})

Implementation

Profile(
    {this.areFriends,
    this.isFan,
    this.isFollowing,
    this.isFollowingReplurk,
    this.friendStatus,
    this.blockedByMe,
    this.alias,
    this.hasReadPermission,
    this.plurks,
    this.userInfo,
    this.friendsCount,
    this.fansCount,
    this.privacy,
    this.alertsCount,
    this.unreadCount});