Input$ContentTypeInput constructor
Input$ContentTypeInput({
- required String name,
- String? type,
- 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,
});