Input$ContentTypeInput constructor

Input$ContentTypeInput({
  1. required String name,
  2. String? type,
  3. Input$ContentTypeImageInput? image,
})

Implementation

factory Input$ContentTypeInput({
  required String name,
  String? type,
  Input$ContentTypeImageInput? image,
}) =>
    Input$ContentTypeInput._({
      r'name': name,
      if (type != null) r'type': type,
      if (image != null) r'image': image,
    });