Input$TaxInput constructor

Input$TaxInput({
  1. String? label,
  2. String? externalId,
  3. Input$TaxValueInput? value,
  4. List<Enum$TaxUseEnum>? use,
  5. bool? product,
  6. String? company,
})

Implementation

factory Input$TaxInput({
  String? label,
  String? externalId,
  Input$TaxValueInput? value,
  List<Enum$TaxUseEnum>? use,
  bool? product,
  String? company,
}) =>
    Input$TaxInput._({
      if (label != null) r'label': label,
      if (externalId != null) r'externalId': externalId,
      if (value != null) r'value': value,
      if (use != null) r'use': use,
      if (product != null) r'product': product,
      if (company != null) r'company': company,
    });