hideHeader property

  1. @Input()
set hideHeader (bool shouldHideHeader)

Whether to hide the dialog header.

Implementation

@Input()
set hideHeader(bool shouldHideHeader) =>
    _shouldShowHeader = !shouldHideHeader;