Input$TargetWithGroupInput constructor

Input$TargetWithGroupInput({
  1. String? pos,
  2. String? user,
  3. String? group,
  4. String? wholesaler,
  5. String? manufacturer,
})

Implementation

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