copyWith method
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);