bind method
CellPageView
bind({
- MutableCell<
int> ? page, - ValueCell<
bool> ? animate, - ValueCell<
Duration> ? duration, - ValueCell<
Curve> ? curve, - ValueCell<
void> ? nextPage, - ValueCell<
void> ? previousPage, - MetaCell<
bool> ? isAnimating, - ValueCell<
Axis> ? scrollDirection, - ValueCell<
bool> ? reverse, - ValueCell<
ScrollPhysics?> ? physics, - ValueCell<
bool> ? pageSnapping, - ValueCell<
List< ? children,Widget> > - ValueCell<
DragStartBehavior> ? dragStartBehavior, - ValueCell<
bool> ? allowImplicitScrolling, - ValueCell<
String?> ? restorationId, - ValueCell<
Clip> ? clipBehavior, - ValueCell<
HitTestBehavior> ? hitTestBehavior, - ValueCell<
ScrollBehavior?> ? scrollBehavior, - ValueCell<
bool> ? padEnds,
Implementation
CellPageView bind({
MutableCell<int>? page,
ValueCell<bool>? animate,
ValueCell<Duration>? duration,
ValueCell<Curve>? curve,
ValueCell<void>? nextPage,
ValueCell<void>? previousPage,
MetaCell<bool>? isAnimating,
ValueCell<Axis>? scrollDirection,
ValueCell<bool>? reverse,
ValueCell<ScrollPhysics?>? physics,
ValueCell<bool>? pageSnapping,
ValueCell<List<Widget>>? children,
ValueCell<DragStartBehavior>? dragStartBehavior,
ValueCell<bool>? allowImplicitScrolling,
ValueCell<String?>? restorationId,
ValueCell<Clip>? clipBehavior,
ValueCell<HitTestBehavior>? hitTestBehavior,
ValueCell<ScrollBehavior?>? scrollBehavior,
ValueCell<bool>? padEnds,
}) =>
CellPageView(
page: page ?? this.page,
animate: animate ?? this.animate,
duration: duration ?? this.duration,
curve: curve ?? this.curve,
nextPage: nextPage ?? this.nextPage,
previousPage: previousPage ?? this.previousPage,
isAnimating: isAnimating ?? this.isAnimating,
scrollDirection: scrollDirection ?? this.scrollDirection,
reverse: reverse ?? this.reverse,
physics: physics ?? this.physics,
pageSnapping: pageSnapping ?? this.pageSnapping,
children: children ?? this.children,
dragStartBehavior: dragStartBehavior ?? this.dragStartBehavior,
allowImplicitScrolling:
allowImplicitScrolling ?? this.allowImplicitScrolling,
restorationId: restorationId ?? this.restorationId,
clipBehavior: clipBehavior ?? this.clipBehavior,
hitTestBehavior: hitTestBehavior ?? this.hitTestBehavior,
scrollBehavior: scrollBehavior ?? this.scrollBehavior,
padEnds: padEnds ?? this.padEnds,
);