bind method

CellPageView bind({
  1. MutableCell<int>? page,
  2. ValueCell<bool>? animate,
  3. ValueCell<Duration>? duration,
  4. ValueCell<Curve>? curve,
  5. ValueCell<void>? nextPage,
  6. ValueCell<void>? previousPage,
  7. MetaCell<bool>? isAnimating,
  8. ValueCell<Axis>? scrollDirection,
  9. ValueCell<bool>? reverse,
  10. ValueCell<ScrollPhysics?>? physics,
  11. ValueCell<bool>? pageSnapping,
  12. ValueCell<List<Widget>>? children,
  13. ValueCell<DragStartBehavior>? dragStartBehavior,
  14. ValueCell<bool>? allowImplicitScrolling,
  15. ValueCell<String?>? restorationId,
  16. ValueCell<Clip>? clipBehavior,
  17. ValueCell<HitTestBehavior>? hitTestBehavior,
  18. ValueCell<ScrollBehavior?>? scrollBehavior,
  19. 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,
    );