Input$CommentInput constructor

Input$CommentInput({
  1. String? user,
  2. String? comment,
  3. String? replyTo,
  4. List<String>? attachments,
  5. Input$CommentHolderInput? holder,
})

Implementation

factory Input$CommentInput({
  String? user,
  String? comment,
  String? replyTo,
  List<String>? attachments,
  Input$CommentHolderInput? holder,
}) =>
    Input$CommentInput._({
      if (user != null) r'user': user,
      if (comment != null) r'comment': comment,
      if (replyTo != null) r'replyTo': replyTo,
      if (attachments != null) r'attachments': attachments,
      if (holder != null) r'holder': holder,
    });