ContainedButtonTheme constructor
const
ContainedButtonTheme({
- Key? key,
- required ContainedButtonThemeData data,
- required Widget child,
Create a ContainedButtonTheme.
The data
parameter must not be null.
Implementation
const ContainedButtonTheme({
Key? key,
required this.data,
required Widget child,
}) : super(key: key, child: child);