hidden property
Whether the modal is temporarily hidden.
Implementation
@override
bool get hidden => _isHidden;
Change the temporary visibility of the modal.
Implementation
@override
set hidden(bool hidden) {
_isHidden = hidden;
if (_isHidden) {
_hideModalOverlay(temporary: true);
} else {
_showModalOverlay(temporary: true);
}
}