Input$ScrapedPerformerInput constructor

Input$ScrapedPerformerInput({
  1. String? stored_id,
  2. String? name,
  3. String? disambiguation,
  4. String? gender,
  5. @Deprecated('use urls') String? url,
  6. List<String>? urls,
  7. @Deprecated('use urls') String? twitter,
  8. @Deprecated('use urls') String? instagram,
  9. String? birthdate,
  10. String? ethnicity,
  11. String? country,
  12. String? eye_color,
  13. String? height,
  14. String? measurements,
  15. String? fake_tits,
  16. String? penis_length,
  17. String? circumcised,
  18. @Deprecated('Use career_start and career_end') String? career_length,
  19. String? career_start,
  20. String? career_end,
  21. String? tattoos,
  22. String? piercings,
  23. String? aliases,
  24. String? details,
  25. String? death_date,
  26. String? hair_color,
  27. String? weight,
  28. String? remote_site_id,
})

Implementation

factory Input$ScrapedPerformerInput({
  String? stored_id,
  String? name,
  String? disambiguation,
  String? gender,
  @Deprecated('use urls') String? url,
  List<String>? urls,
  @Deprecated('use urls') String? twitter,
  @Deprecated('use urls') String? instagram,
  String? birthdate,
  String? ethnicity,
  String? country,
  String? eye_color,
  String? height,
  String? measurements,
  String? fake_tits,
  String? penis_length,
  String? circumcised,
  @Deprecated('Use career_start and career_end') String? career_length,
  String? career_start,
  String? career_end,
  String? tattoos,
  String? piercings,
  String? aliases,
  String? details,
  String? death_date,
  String? hair_color,
  String? weight,
  String? remote_site_id,
}) => Input$ScrapedPerformerInput._({
  if (stored_id != null) r'stored_id': stored_id,
  if (name != null) r'name': name,
  if (disambiguation != null) r'disambiguation': disambiguation,
  if (gender != null) r'gender': gender,
  if (url != null) r'url': url,
  if (urls != null) r'urls': urls,
  if (twitter != null) r'twitter': twitter,
  if (instagram != null) r'instagram': instagram,
  if (birthdate != null) r'birthdate': birthdate,
  if (ethnicity != null) r'ethnicity': ethnicity,
  if (country != null) r'country': country,
  if (eye_color != null) r'eye_color': eye_color,
  if (height != null) r'height': height,
  if (measurements != null) r'measurements': measurements,
  if (fake_tits != null) r'fake_tits': fake_tits,
  if (penis_length != null) r'penis_length': penis_length,
  if (circumcised != null) r'circumcised': circumcised,
  if (career_length != null) r'career_length': career_length,
  if (career_start != null) r'career_start': career_start,
  if (career_end != null) r'career_end': career_end,
  if (tattoos != null) r'tattoos': tattoos,
  if (piercings != null) r'piercings': piercings,
  if (aliases != null) r'aliases': aliases,
  if (details != null) r'details': details,
  if (death_date != null) r'death_date': death_date,
  if (hair_color != null) r'hair_color': hair_color,
  if (weight != null) r'weight': weight,
  if (remote_site_id != null) r'remote_site_id': remote_site_id,
});