PhotoBrowserProvider constructor

PhotoBrowserProvider({
  1. Key? key,
  2. required PhotoBrowserController controller,
  3. required WidgetBuilder builder,
  4. List<String>? notificationNames,
})

Implementation

PhotoBrowserProvider({
  super.key,
  required this.controller,
  required WidgetBuilder builder,
  List<String>? notificationNames,
}) : super(
          child: _NotificationListener(
        builder: builder,
        notificationNames: notificationNames,
      ));