RadioInputWidget<T> constructor

const RadioInputWidget<T>({
  1. Key? key,
  2. required String formControlName,
  3. required String label,
  4. T? value,
  5. String color = 'primary',
  6. bool disabled = false,
})

Implementation

const RadioInputWidget({
  Key? key,
  required this.formControlName,
  required this.label,
  this.value,
  this.color = 'primary',
  this.disabled = false,
}) : super(key: key);