ProfileStats constructor

const ProfileStats({
  1. required int rank,
  2. required int following,
  3. required int followers,
})

Implementation

const ProfileStats({
  required this.rank,
  required this.following,
  required this.followers,
});