StockholmRadioButton<T> constructor

const StockholmRadioButton<T>({
  1. required T value,
  2. required T groupValue,
  3. ValueChanged<T>? onChanged,
  4. String? label,
  5. double size = 16.0,
  6. bool enabled = true,
  7. Key? key,
})

Implementation

const StockholmRadioButton({
  required this.value,
  required this.groupValue,
  this.onChanged,
  this.label,
  this.size = 16.0,
  this.enabled = true,
  Key? key,
}) : super(key: key);