MoveNavigationControls constructor

const MoveNavigationControls({
  1. Key? key,
  2. required MoveHistory moveHistory,
  3. required VoidCallback onGoBack,
  4. required VoidCallback onGoForward,
  5. VoidCallback? onGoToStart,
  6. VoidCallback? onGoToEnd,
  7. NavigationControlsStyle? style,
})

Implementation

const MoveNavigationControls({
  super.key,
  required this.moveHistory,
  required this.onGoBack,
  required this.onGoForward,
  this.onGoToStart,
  this.onGoToEnd,
  this.style,
});