RadioTheme constructor

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

Creates a theme that controls how descendant radio should look like.

Implementation

const RadioTheme({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);