Input$UpdateSEOInput constructor

Input$UpdateSEOInput({
  1. String? googleAnalyticsId,
  2. String? titleTag,
  3. String? metaDescriptionTag,
  4. List<Input$TagInput>? headerTags,
})

Implementation

factory Input$UpdateSEOInput({
  String? googleAnalyticsId,
  String? titleTag,
  String? metaDescriptionTag,
  List<Input$TagInput>? headerTags,
}) =>
    Input$UpdateSEOInput._({
      if (googleAnalyticsId != null) r'googleAnalyticsId': googleAnalyticsId,
      if (titleTag != null) r'titleTag': titleTag,
      if (metaDescriptionTag != null)
        r'metaDescriptionTag': metaDescriptionTag,
      if (headerTags != null) r'headerTags': headerTags,
    });