MultiDateTimetableStyle constructor

MultiDateTimetableStyle(
  1. BuildContext context, {
  2. double? maxHeaderFraction,
  3. 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,
  );
}