Input$MetaKeywordsInput constructor

Input$MetaKeywordsInput({
  1. String? name,
  2. String? content,
})

Implementation

factory Input$MetaKeywordsInput({
  String? name,
  String? content,
}) =>
    Input$MetaKeywordsInput._({
      if (name != null) r'name': name,
      if (content != null) r'content': content,
    });