hasCompleteCompanyInfo property

bool get hasCompleteCompanyInfo

Checks if this profile has complete company information Only relevant when professionalType == company

Implementation

bool get hasCompleteCompanyInfo {
  if (professionalType == ProfessionalType.freelancer) {
    return true; // Not applicable for freelancers
  }
  return companyCif != null &&
      companyCif!.isNotEmpty &&
      companyName != null &&
      companyName!.isNotEmpty &&
      companyAddress != null &&
      companyAddress!.isNotEmpty;
}