Input$MarketPlaceProductFilterInput constructor

Input$MarketPlaceProductFilterInput({
  1. String? fromPrice,
  2. String? toPrice,
  3. DateTime? from,
  4. DateTime? to,
  5. List<String>? brand,
  6. List<String>? categories,
  7. Input$TargetsInput? target,
})

Implementation

factory Input$MarketPlaceProductFilterInput({
  String? fromPrice,
  String? toPrice,
  DateTime? from,
  DateTime? to,
  List<String>? brand,
  List<String>? categories,
  Input$TargetsInput? target,
}) =>
    Input$MarketPlaceProductFilterInput._({
      if (fromPrice != null) r'fromPrice': fromPrice,
      if (toPrice != null) r'toPrice': toPrice,
      if (from != null) r'from': from,
      if (to != null) r'to': to,
      if (brand != null) r'brand': brand,
      if (categories != null) r'categories': categories,
      if (target != null) r'target': target,
    });