hideFooter property

  1. @Input()
set hideFooter (bool shouldHideFooter)

Whether to hide the dialog footer.

Implementation

@Input()
set hideFooter(bool shouldHideFooter) =>
    _shouldShowFooter = !shouldHideFooter;