setPage method

Future<bool?> setPage(
  1. int page
)

Jumps to the specified page

Implementation

Future<bool?> setPage(int page) async {
  return await _controller?.setPage(page);
}