The Part.unhide()
method will mark the part as not hidden.
This method returns the part
object, so it’s chainable.
TIP
This method can be destructured as inhide
in a part’s draft method.
Part.unhide() example
Javascript
cont part = {
name: 'examples.hide',
draft: ({ unhide, part }
) => part.unhide()
}