copyWith method

Input$UpdateCheckSuitePreferencesInput copyWith({
  1. List<Input$CheckSuiteAutoTriggerPreference>? autoTriggerPreferences,
  2. String? clientMutationId()?,
  3. String? repositoryId,
})

Implementation

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