of static method

CalendarText of(
  1. BuildContext context
)

Implementation

static CalendarText of(BuildContext context) {
  final inheritedOptions =
      context.dependOnInheritedWidgetOfExactType<InheritedCalendarText>();
  return inheritedOptions?.text ?? const CalendarText();
}