DevToolsToggleButton constructor

const DevToolsToggleButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. required bool isSelected,
  4. required String message,
  5. required IconData icon,
  6. bool outlined = true,
  7. String? label,
  8. OutlinedBorder? shape,
  9. double? minScreenWidthForTextBeforeScaling,
})

Implementation

const DevToolsToggleButton({
  super.key,
  required this.onPressed,
  required this.isSelected,
  required this.message,
  required this.icon,
  this.outlined = true,
  this.label,
  this.shape,
  this.minScreenWidthForTextBeforeScaling,
});