counts property

Widget get counts

Implementation

Widget get counts {
  return Row(
    children: [
      link(actor.followersCount, 'followers'),
      sizeBox,
      link(actor.followsCount, 'following'),
      sizeBox,
      count(actor.postsCount, 'posts'),
    ],
  );
}