FriendData constructor

FriendData(
  1. {int? id,
  2. String? fullName,
  3. String? profileImage,
  4. String? address,
  5. int? followers,
  6. int? following,
  7. int? reviews,
  8. String? gender,
  9. String? aboutMe,
  10. String? relationshipStatus,
  11. List<String>? musicType,
  12. List<String>? interests,
  13. bool? isFollow,
  14. int? isOnline,
  15. String? isPrivateAccount,
  16. String? buttonStatus,
  17. bool? friendFollow,
  18. bool? isBlock,
  19. bool? canMessage}
)

Implementation

FriendData(
    {this.id,
    this.fullName,
    this.profileImage,
    this.address,
    this.followers,
    this.following,
    this.reviews,
    this.gender,
    this.aboutMe,
    this.relationshipStatus,
    this.musicType,
    this.interests,
    this.isFollow,
    this.isOnline,
    this.isPrivateAccount,
    this.buttonStatus,
    this.friendFollow,
    this.isBlock,
    this.canMessage});