copyWith method

Input$AcceptTopicSuggestionInput copyWith({
  1. String? clientMutationId()?,
  2. String? name,
  3. String? repositoryId,
})

Implementation

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