SpinBoxTheme constructor

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

Constructs a checkbox theme that configures all descendant SpinBox widgets.

Implementation

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