contextNotifier function

ValueNotifier<BuildContext?> contextNotifier(
  1. BuildContext context
)

Returns the ValueNotifier<BuildContext> associated with the Video present in the current BuildContext.

Implementation

ValueNotifier<BuildContext?> contextNotifier(BuildContext context) =>
    VideoStateInheritedWidget.of(context).contextNotifier;