FastMediaChangedLayoutNotifier constructor

const FastMediaChangedLayoutNotifier({
  1. Key? key,
  2. Widget? child,
  3. required FastMediaLayoutBloc bloc,
})

Creates a FastMediaChangedLayoutNotifier that dispatches layout changed notifications when child changes layout size.

Implementation

const FastMediaChangedLayoutNotifier({
  super.key,
  super.child,
  required this.bloc,
});