isValid method

bool isValid()

Implementation

bool isValid() {
  return (id != null && id!.isNotEmpty) &&
      (name != null && name!.isNotEmpty) &&
      (serviceArea != null && serviceArea!.isNotEmpty) &&
      (privacyPolicyUrl != null && privacyPolicyUrl!.isNotEmpty);
}