resultsNotFound property

bool get resultsNotFound

Implementation

bool get resultsNotFound {
  if (loading) return false;

  if (searchQuery?.isEmpty ?? true && tag == null) return false;

  return referrals.isEmpty;
}