Input$ScrapedSceneInput constructor

Input$ScrapedSceneInput({
  1. String? title,
  2. String? code,
  3. String? details,
  4. String? director,
  5. @Deprecated('use urls') String? url,
  6. List<String>? urls,
  7. String? date,
  8. String? remote_site_id,
})

Implementation

factory Input$ScrapedSceneInput({
  String? title,
  String? code,
  String? details,
  String? director,
  @Deprecated('use urls') String? url,
  List<String>? urls,
  String? date,
  String? remote_site_id,
}) => Input$ScrapedSceneInput._({
  if (title != null) r'title': title,
  if (code != null) r'code': code,
  if (details != null) r'details': details,
  if (director != null) r'director': director,
  if (url != null) r'url': url,
  if (urls != null) r'urls': urls,
  if (date != null) r'date': date,
  if (remote_site_id != null) r'remote_site_id': remote_site_id,
});