Input$DefaultAudienceInput constructor

Input$DefaultAudienceInput({
  1. String? title,
  2. String? description,
  3. String? icon,
  4. Input$MediaInput? media,
  5. required List<Input$AudienceSegmentInput> segments,
})

Implementation

factory Input$DefaultAudienceInput({
  String? title,
  String? description,
  String? icon,
  Input$MediaInput? media,
  required List<Input$AudienceSegmentInput> segments,
}) =>
    Input$DefaultAudienceInput._({
      if (title != null) r'title': title,
      if (description != null) r'description': description,
      if (icon != null) r'icon': icon,
      if (media != null) r'media': media,
      r'segments': segments,
    });