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