CheckboxTheme constructor

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

Creates a button theme that controls how descendant Checkboxes should look like.

Implementation

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