ToggleIcon constructor

const ToggleIcon({
  1. required bool value,
  2. required dynamic onPressed(),
  3. required Widget onIcon,
  4. required Widget offIcon,
})

Implementation

const ToggleIcon({
  required this.value,
  required this.onPressed,
  required this.onIcon,
  required this.offIcon,
});