Input$CompanyUpdateInput constructor

Input$CompanyUpdateInput({
  1. String? name,
  2. String? description,
  3. List<String>? tags,
  4. Input$MediaInput? media,
  5. Input$FullAddressInput? address,
  6. Input$CompanyLegalInput? legal,
  7. List<String>? banks,
  8. Input$CompanyContactDetailsInput? contact,
  9. bool? logistic,
  10. String? externalId,
  11. Input$CompanyCustomerInput? customer,
  12. Input$CompanySupplierInput? supplier,
})

Implementation

factory Input$CompanyUpdateInput({
  String? name,
  String? description,
  List<String>? tags,
  Input$MediaInput? media,
  Input$FullAddressInput? address,
  Input$CompanyLegalInput? legal,
  List<String>? banks,
  Input$CompanyContactDetailsInput? contact,
  bool? logistic,
  String? externalId,
  Input$CompanyCustomerInput? customer,
  Input$CompanySupplierInput? supplier,
}) =>
    Input$CompanyUpdateInput._({
      if (name != null) r'name': name,
      if (description != null) r'description': description,
      if (tags != null) r'tags': tags,
      if (media != null) r'media': media,
      if (address != null) r'address': address,
      if (legal != null) r'legal': legal,
      if (banks != null) r'banks': banks,
      if (contact != null) r'contact': contact,
      if (logistic != null) r'logistic': logistic,
      if (externalId != null) r'externalId': externalId,
      if (customer != null) r'customer': customer,
      if (supplier != null) r'supplier': supplier,
    });