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