FriendModel constructor

FriendModel(
  1. {int? id,
  2. String? name,
  3. String? profileImage,
  4. bool? isFollow,
  5. String? isPrivateAccount,
  6. String? buttonStatus,
  7. bool? friendFollow}
)

Implementation

FriendModel({
  this.id,
  this.name,
  this.profileImage,
  this.isFollow,
  this.isPrivateAccount,
  this.buttonStatus,
  this.friendFollow,
});