RadioThemeModifier constructor

const RadioThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required RadioThemeData data,
})

Constructs a radio theme that configures all descendant Radio widgets.

Implementation

const RadioThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});