FollowCount constructor

const FollowCount({
  1. required String account,
  2. required int followingCount,
  3. required int followerCount,
})

Implementation

const FollowCount({
  required this.account,
  required this.followingCount,
  required this.followerCount,
});