WiredRadio<T> constructor

const WiredRadio<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. required bool onChanged(
    1. T?
    )?,
})

Implementation

const WiredRadio({
  Key? key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
}) : super(key: key);