contextNotifier function

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

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

Implementation

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