Input$ScrapedGalleryInput constructor
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,
});