FollowMeButton constructor

const FollowMeButton({
  1. Key? key,
  2. required bool isFollowing,
  3. required void onPressed(),
  4. FollowMeButtonConfig config = FollowMeButtonConfig.defaultConfig,
})

Implementation

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