copyWith method

Input$UnminimizeCommentInput copyWith({
  1. String? clientMutationId()?,
  2. String? subjectId,
})

Implementation

Input$UnminimizeCommentInput copyWith(
        {String? Function()? clientMutationId, String? subjectId}) =>
    Input$UnminimizeCommentInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        subjectId: subjectId == null ? this.subjectId : subjectId);