Input$SeoComponentInput constructor

Input$SeoComponentInput({
  1. String? metaTitle,
  2. String? metaDesription,
  3. List<Input$TagInput>? metaKeywords,
})

Implementation

factory Input$SeoComponentInput({
  String? metaTitle,
  String? metaDesription,
  List<Input$TagInput>? metaKeywords,
}) =>
    Input$SeoComponentInput._({
      if (metaTitle != null) r'metaTitle': metaTitle,
      if (metaDesription != null) r'metaDesription': metaDesription,
      if (metaKeywords != null) r'metaKeywords': metaKeywords,
    });