copyWith method
Implementation
Input$UpdateIpAllowListEntryInput copyWith(
{String? allowListValue,
String? Function()? clientMutationId,
String? ipAllowListEntryId,
bool? isActive,
String? Function()? name}) =>
Input$UpdateIpAllowListEntryInput(
allowListValue:
allowListValue == null ? this.allowListValue : allowListValue,
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
ipAllowListEntryId: ipAllowListEntryId == null
? this.ipAllowListEntryId
: ipAllowListEntryId,
isActive: isActive == null ? this.isActive : isActive,
name: name == null ? this.name : name());