Input$BlogDataInput constructor

Input$BlogDataInput({
  1. String? sectionReference,
  2. String? sectionTitle,
  3. String? sectionContent,
  4. List<Input$PictureInput>? sectionPictures,
})

Implementation

factory Input$BlogDataInput({
  String? sectionReference,
  String? sectionTitle,
  String? sectionContent,
  List<Input$PictureInput>? sectionPictures,
}) =>
    Input$BlogDataInput._({
      if (sectionReference != null) r'sectionReference': sectionReference,
      if (sectionTitle != null) r'sectionTitle': sectionTitle,
      if (sectionContent != null) r'sectionContent': sectionContent,
      if (sectionPictures != null) r'sectionPictures': sectionPictures,
    });