copyWith method
Input$DeclineTopicSuggestionInput
copyWith({
- String? clientMutationId()?,
- String? name,
- Enum$TopicSuggestionDeclineReason? reason,
- 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);