Input$CompanyContactDetailsInput constructor

Input$CompanyContactDetailsInput({
  1. String? website,
  2. String? email,
  3. 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,
    });