copyWith method

Input$UpdateTopicsInput copyWith({
  1. String? clientMutationId()?,
  2. String? repositoryId,
  3. List<String>? topicNames,
})

Implementation

Input$UpdateTopicsInput copyWith(
        {String? Function()? clientMutationId,
        String? repositoryId,
        List<String>? topicNames}) =>
    Input$UpdateTopicsInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        repositoryId: repositoryId == null ? this.repositoryId : repositoryId,
        topicNames: topicNames == null ? this.topicNames : topicNames);