MultiDateTimetableStyle constructor
MultiDateTimetableStyle(
- BuildContext context, {
- double? maxHeaderFraction,
- bool? contentBehindHead,
Implementation
factory MultiDateTimetableStyle(
// To allow future updates to use the context and align the parameters to
// other style constructors.
// ignore: avoid_unused_constructor_parameters
BuildContext context, {
double? maxHeaderFraction,
bool? contentBehindHead,
}) {
return MultiDateTimetableStyle.raw(
maxHeaderFraction: maxHeaderFraction ?? 0.5,
contentBehindHead: contentBehindHead ?? false,
);
}