showMinimizeButton property
bool?
get
showMinimizeButton
Whether to show the minimize button. null keeps the widget default (true).
Implementation
bool? get showMinimizeButton => _showMinimizeButton;
set
showMinimizeButton
(bool? value)
Implementation
set showMinimizeButton(bool? value) {
if (_showMinimizeButton == value) return;
_showMinimizeButton = value;
notifyListeners();
}