copyWith method

Input$AddReactionInput copyWith({
  1. String? clientMutationId()?,
  2. Enum$ReactionContent? content,
  3. String? subjectId,
})

Implementation

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