Input$OrderDeliveryZonesUpdateInput constructor

Input$OrderDeliveryZonesUpdateInput({
  1. double? radius,
  2. String? minPrice,
  3. String? extraFees,
  4. String? color,
  5. Enum$ZoneTypesCategoryEnum? category,
  6. Enum$ZoneTypesEnum? type,
  7. List<Input$DeliveryZonePathInput>? paths,
})

Implementation

factory Input$OrderDeliveryZonesUpdateInput({
  double? radius,
  String? minPrice,
  String? extraFees,
  String? color,
  Enum$ZoneTypesCategoryEnum? category,
  Enum$ZoneTypesEnum? type,
  List<Input$DeliveryZonePathInput>? paths,
}) =>
    Input$OrderDeliveryZonesUpdateInput._({
      if (radius != null) r'radius': radius,
      if (minPrice != null) r'minPrice': minPrice,
      if (extraFees != null) r'extraFees': extraFees,
      if (color != null) r'color': color,
      if (category != null) r'category': category,
      if (type != null) r'type': type,
      if (paths != null) r'paths': paths,
    });