AppTextToggle constructor

const AppTextToggle({
  1. Key? key,
  2. required String option1,
  3. required String option2,
  4. required bool isOption1Selection,
  5. required ValueChanged<bool> onToggle,
})

Implementation

const AppTextToggle({
  super.key,
  required this.option1,
  required this.option2,
  required this.isOption1Selection,
  required this.onToggle,
});