Input$SlidesContentInput constructor
Input$SlidesContentInput({
- Input$PictureInput? image,
- String? icon,
- String? title,
- String? description,
- Input$SlidesContentCallToActionInput? calltoaction,
Implementation
factory Input$SlidesContentInput({
Input$PictureInput? image,
String? icon,
String? title,
String? description,
Input$SlidesContentCallToActionInput? calltoaction,
}) =>
Input$SlidesContentInput._({
if (image != null) r'image': image,
if (icon != null) r'icon': icon,
if (title != null) r'title': title,
if (description != null) r'description': description,
if (calltoaction != null) r'calltoaction': calltoaction,
});