Input$FBCatalogSyncShippingInput constructor

Input$FBCatalogSyncShippingInput({
  1. bool? active,
  2. String? country,
  3. String? service,
  4. String? price,
})

Implementation

factory Input$FBCatalogSyncShippingInput({
  bool? active,
  String? country,
  String? service,
  String? price,
}) =>
    Input$FBCatalogSyncShippingInput._({
      if (active != null) r'active': active,
      if (country != null) r'country': country,
      if (service != null) r'service': service,
      if (price != null) r'price': price,
    });