RadioCard<T> constructor

const RadioCard<T>({
  1. Key? key,
  2. required Widget child,
  3. required T value,
  4. bool enabled = true,
  5. FocusNode? focusNode,
})

Implementation

const RadioCard({
  super.key,
  required this.child,
  required this.value,
  this.enabled = true,
  this.focusNode,
});