OnTabPageViewBuilder constructor
const
OnTabPageViewBuilder({
- Key? key,
- InjectedTabPageView? listenTo,
- required Widget builder(
- 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);