showPauseButton property

bool? get showPauseButton

Whether to show the pause/resume button. null keeps the widget default (true).

Implementation

bool? get showPauseButton => _showPauseButton;
set showPauseButton (bool? value)

Implementation

set showPauseButton(bool? value) {
  if (_showPauseButton == value) return;
  _showPauseButton = value;
  notifyListeners();
}