Input$TargetsInput constructor

Input$TargetsInput({
  1. List<String>? pos,
  2. List<String>? wholesaler,
  3. List<String>? manufacturer,
})

Implementation

factory Input$TargetsInput({
  List<String>? pos,
  List<String>? wholesaler,
  List<String>? manufacturer,
}) =>
    Input$TargetsInput._({
      if (pos != null) r'pos': pos,
      if (wholesaler != null) r'wholesaler': wholesaler,
      if (manufacturer != null) r'manufacturer': manufacturer,
    });