Input$ScrapedGalleryInput constructor

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

Implementation

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