copyWith method
Implementation
Input$DeleteIpAllowListEntryInput copyWith(
{String? Function()? clientMutationId, String? ipAllowListEntryId}) =>
Input$DeleteIpAllowListEntryInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
ipAllowListEntryId: ipAllowListEntryId == null
? this.ipAllowListEntryId
: ipAllowListEntryId);