copyWith method

Input$DeleteIpAllowListEntryInput copyWith({
  1. String? clientMutationId()?,
  2. String? ipAllowListEntryId,
})

Implementation

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