Input$InternalProductTranslationContentInput constructor

Input$InternalProductTranslationContentInput({
  1. required String name,
  2. required String description,
  3. List<String>? descriptionList,
  4. List<Input$ProductSpecsInput>? specs,
})

Implementation

factory Input$InternalProductTranslationContentInput({
  required String name,
  required String description,
  List<String>? descriptionList,
  List<Input$ProductSpecsInput>? specs,
}) =>
    Input$InternalProductTranslationContentInput._({
      r'name': name,
      r'description': description,
      if (descriptionList != null) r'descriptionList': descriptionList,
      if (specs != null) r'specs': specs,
    });