SelectionButton constructor

const SelectionButton({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. FutureOr<void> onPressed()?,
})

Implementation

const SelectionButton({
  super.key,
  required this.title,
  required this.subtitle,
  this.onPressed,
});