BasicInfo constructor

BasicInfo({
  1. bool? isPrivate,
  2. bool? isVerified,
  3. String? profilePic,
  4. int? followers,
  5. int? following,
  6. String? fullName,
  7. int? noOfPosts,
  8. String? bio,
})

Implementation

BasicInfo({
  this.isPrivate,
  this.isVerified,
  this.profilePic,
  this.followers,
  this.following,
  this.fullName,
  this.noOfPosts,
  this.bio,
});