allDayOverflowOf<E extends Event> static method

AllDayOverflowBuilder<E>? allDayOverflowOf<E extends Event>(
  1. BuildContext context
)

Implementation

static AllDayOverflowBuilder<E>? allDayOverflowOf<E extends Event>(
  BuildContext context,
) {
  return context
      .dependOnInheritedWidgetOfExactType<DefaultEventBuilder<E>>()
      ?.allDayOverflowBuilder;
}