allDayOf<E extends Event> static method

AllDayEventBuilder<E>? allDayOf<E extends Event>(
  1. BuildContext context
)

Implementation

static AllDayEventBuilder<E>? allDayOf<E extends Event>(
  BuildContext context,
) {
  return context
      .dependOnInheritedWidgetOfExactType<DefaultEventBuilder<E>>()
      ?.allDayBuilder;
}