of static method

DateController? of(
  1. BuildContext context
)

Implementation

static DateController? of(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<DefaultDateController>()
      ?.controller;
}