AnimatedRadioColumn constructor

const AnimatedRadioColumn({
  1. Key? key,
  2. required List<String> options,
  3. ValueChanged<String?>? onChanged,
  4. String? question,
  5. EdgeInsetsGeometry? padding = const EdgeInsets.all(20),
  6. double cornerRadius = 12,
  7. String? initialValue,
  8. int? currentQuestionNumber,
  9. int? totalQuestions,
  10. VoidCallback? onBackPressed,
  11. bool showBackButton = false,
})

Implementation

const AnimatedRadioColumn({
  super.key,
  required this.options,
  this.onChanged,
  this.question,
  this.padding = const EdgeInsets.all(20),
  this.cornerRadius = 12,
  this.initialValue,
  this.currentQuestionNumber,
  this.totalQuestions,
  this.onBackPressed,
  this.showBackButton = false,
});