WeekdaySelectorTheme constructor

const WeekdaySelectorTheme({
  1. Key? key,
  2. required WeekdaySelectorThemeData data,
  3. 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);