FollowComponent constructor

const FollowComponent(
  1. {Key? key,
  2. bool isFollow = false,
  3. dynamic onFollow(
      )?,
    1. required String profileImage,
    2. required String buttonTitle,
    3. required dynamic onAction(
        ),
      1. required String friendName,
      2. String? updateButton,
      3. dynamic onUnFollow(
          )?,
        1. dynamic onProfileTap(
            )?}
          )

          Implementation

          const FollowComponent(
              {super.key,
              this.isFollow = false,
              this.onFollow,
              required this.profileImage,
              required this.buttonTitle,
              required this.onAction,
              required this.friendName,
              this.updateButton,
              this.onUnFollow,
              this.onProfileTap});