copyWith method

Input$UpdateDiscussionCommentInput copyWith({
  1. String? body,
  2. String? clientMutationId()?,
  3. String? commentId,
})

Implementation

Input$UpdateDiscussionCommentInput copyWith(
        {String? body,
        String? Function()? clientMutationId,
        String? commentId}) =>
    Input$UpdateDiscussionCommentInput(
        body: body == null ? this.body : body,
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        commentId: commentId == null ? this.commentId : commentId);