updateHybridList method

void updateHybridList()

called for the first time pckage is entered from main app

Implementation

void updateHybridList() async {
  await Future.forEach(MasterLocationService().allReceivedUsersList!,
      (dynamic user) async {
    if (atsignsToTrack!.contains(user.displayName)) await updateDetails(user);
  });

  if (hybridUsersList.isNotEmpty) {
    Future.delayed(const Duration(seconds: 2),
        () => _atHybridUsersController.add(hybridUsersList));
  }
}