copyWith method
Input$UpdateIpAllowListEnabledSettingInput
copyWith({
- String? clientMutationId()?,
- String? ownerId,
- 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);