BasfOption constructor

BasfOption({
  1. required String text,
  2. required VoidCallback onChanged,
  3. bool isSelected = false,
  4. String? subtitle,
})

Implementation

BasfOption({
  required this.text,
  required this.onChanged,
  this.isSelected = false,
  this.subtitle,
});