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