Input$SlidesContentInput constructor

Input$SlidesContentInput({
  1. Input$PictureInput? image,
  2. String? icon,
  3. String? title,
  4. String? description,
  5. 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,
    });