Input$CompanyContactDetailsInput constructor
      
      Input$CompanyContactDetailsInput({ 
    
    
- String? website,
- String? email,
- Input$PhoneInput? phone,
Implementation
factory Input$CompanyContactDetailsInput({
  String? website,
  String? email,
  Input$PhoneInput? phone,
}) =>
    Input$CompanyContactDetailsInput._({
      if (website != null) r'website': website,
      if (email != null) r'email': email,
      if (phone != null) r'phone': phone,
    });