FollowMeButton constructor

const FollowMeButton({
  1. Key? key,
  2. required bool isFollowing,
  3. required void onPressed(),
})

Implementation

const FollowMeButton({
  Key? key,
  required this.isFollowing,
  required this.onPressed,
}) : super(key: key);