WeekdaySelectorTheme constructor
const
WeekdaySelectorTheme({
- Key? key,
- required WeekdaySelectorThemeData data,
- required Widget child,
Create a weekday selector and weekday buttons theme that controls
the appearance of MaterialWeekdayButton
widgets.
The data
argument must not be null.
Implementation
const WeekdaySelectorTheme({
Key? key,
required this.data,
required Widget child,
}) : super(key: key, child: child);