Followers constructor

Followers({
  1. String? searchText,
  2. bool isFollowing = false,
  3. Function? count,
})

Implementation

Followers({
  this.searchText,
  this.isFollowing = false,
  this.count,
});