copyWith method

Input$DeclineTopicSuggestionInput copyWith({
  1. String? clientMutationId()?,
  2. String? name,
  3. Enum$TopicSuggestionDeclineReason? reason,
  4. String? repositoryId,
})

Implementation

Input$DeclineTopicSuggestionInput copyWith(
        {String? Function()? clientMutationId,
        String? name,
        Enum$TopicSuggestionDeclineReason? reason,
        String? repositoryId}) =>
    Input$DeclineTopicSuggestionInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        name: name == null ? this.name : name,
        reason: reason == null ? this.reason : reason,
        repositoryId:
            repositoryId == null ? this.repositoryId : repositoryId);