ControlButtonsGroup constructor

const ControlButtonsGroup({
  1. Key? key,
  2. required VoidCallback onWeatherToggle,
  3. required bool weatherVisible,
  4. required VoidCallback onLocationPressed,
  5. VoidCallback? onSettingsPressed,
  6. RALINavigationMode currentMode = RALINavigationMode.default_,
  7. bool isNavigating = false,
  8. double? weatherIntensity,
  9. bool? trafficVisible,
})

//////////// ////////////

Implementation

// II.B - Constructor
///////////////
const ControlButtonsGroup({
  super.key,
  required this.onWeatherToggle,
  required this.weatherVisible,
  required this.onLocationPressed,
  this.onSettingsPressed,
  this.currentMode = RALINavigationMode.default_,
  this.isNavigating = false,
  this.weatherIntensity,
  this.trafficVisible,
});