copyWith method

Implementation

Input$UpdateIpAllowListForInstalledAppsEnabledSettingInput copyWith(
        {String? Function()? clientMutationId,
        String? ownerId,
        Enum$IpAllowListForInstalledAppsEnabledSettingValue? settingValue}) =>
    Input$UpdateIpAllowListForInstalledAppsEnabledSettingInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        ownerId: ownerId == null ? this.ownerId : ownerId,
        settingValue:
            settingValue == null ? this.settingValue : settingValue);