NestedPageViewNotifier constructor

const NestedPageViewNotifier({
  1. Key? key,
  2. required Widget child,
  3. required PageController? parentController,
})

Implementation

const NestedPageViewNotifier({
  Key? key,
  required this.child,
  required this.parentController,
}) : super(key: key);