Following constructor

const Following({
  1. required String follower,
  2. required String following,
  3. required List<String> what,
})

Implementation

const Following({
  required this.follower,
  required this.following,
  required this.what,
});