Input$ContentTypeImageInput constructor

Input$ContentTypeImageInput({
  1. Input$ContentTypeImageFormatInput? background,
  2. Input$ContentTypeImageFormatInput? black,
  3. Input$ContentTypeImageFormatInput? white,
  4. String? icon,
})

Implementation

factory Input$ContentTypeImageInput({
  Input$ContentTypeImageFormatInput? background,
  Input$ContentTypeImageFormatInput? black,
  Input$ContentTypeImageFormatInput? white,
  String? icon,
}) =>
    Input$ContentTypeImageInput._({
      if (background != null) r'background': background,
      if (black != null) r'black': black,
      if (white != null) r'white': white,
      if (icon != null) r'icon': icon,
    });