WeekIndicatorStyle.raw constructor

const WeekIndicatorStyle.raw({
  1. required String tooltip,
  2. required Decoration decoration,
  3. required EdgeInsetsGeometry padding,
  4. required TextStyle textStyle,
  5. required List<String> labels,
})

Implementation

const WeekIndicatorStyle.raw({
  required this.tooltip,
  required this.decoration,
  required this.padding,
  required this.textStyle,
  required this.labels,
}) : assert(labels.length > 0);