FollowingDashboardItem constructor

FollowingDashboardItem({
  1. Key? key,
  2. FollowingView? followingView,
  3. required FollowingModel? value,
  4. required AppModel app,
  5. required FollowingDashboardModel dashboardModel,
})

Implementation

FollowingDashboardItem({
  super.key,
  this.followingView,
  required this.value,
  required this.app,
  required this.dashboardModel,
});