Input$TargetWithoutUserInput constructor

Input$TargetWithoutUserInput({
  1. String? pos,
  2. String? wholesaler,
  3. String? manufacturer,
})

Implementation

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