BasfRadio constructor

const BasfRadio({
  1. Key? key,
  2. required List<BasfOption> options,
  3. Color? selectedColor,
  4. Color? unselectedColor,
  5. Color? backgroundColor,
})

Implementation

const BasfRadio({
  Key? key,
  required this.options,
  this.selectedColor,
  this.unselectedColor,
  this.backgroundColor,
}) : super(key: key);