copyWith method

Input$DeletePackageVersionInput copyWith({
  1. String? clientMutationId()?,
  2. String? packageVersionId,
})

Implementation

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