build method
Build the widget underneath this widget in the tree
Implementation
@override
Widget build(BuildContext context) => RadioGroup<T>(
groupValue: groupValue?.call(),
onChanged: (v) => groupValue?.value = v,
child: child,
);