copyWith method

Input$MinimizeCommentInput copyWith({
  1. Enum$ReportedContentClassifiers? classifier,
  2. String? clientMutationId()?,
  3. String? subjectId,
})

Implementation

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