OnTabPageViewBuilder constructor

const OnTabPageViewBuilder({
  1. Key? key,
  2. InjectedTabPageView? listenTo,
  3. required Widget builder(
    1. int index
    ),
})

Listen to InjectedTabPageView.

In most cases, the InjectedTabPageView can be inferred implicitly. If it can not It must be explicitly defined using listenTo parameter.

Implementation

const OnTabPageViewBuilder({
  Key? key,
  this.listenTo,
  required this.builder,
}) : super(key: key);