widget method

Widget widget(
  1. FollowButton button,
  2. ProfileView actor
)

Implementation

Widget widget(FollowButton button, ProfileView actor) {
  if (isLoginUser(actor)) {
    return const Center();
  } else {
    return button.widget;
  }
}