copyWith method

Input$UpdateIpAllowListEnabledSettingInput copyWith({
  1. String? clientMutationId()?,
  2. String? ownerId,
  3. Enum$IpAllowListEnabledSettingValue? settingValue,
})

Implementation

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