jumpToPage method Null safety

dynamic jumpToPage(
  1. {required int page}
)

Jump Directly to mentioned Page index but without Animation see also : LiquidProvider.jumpToPage

Implementation

jumpToPage({required int page}) {
  assert(_provider != null,
      "LiquidController not attached to any LiquidSwipe Widget.");
  _provider?.jumpToPage(page);
}