setPage method

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

Jumps to the zero-based page and returns whether the jump succeeded.

Implementation

Future<bool?> setPage(int page) async {
  final bool? isSet = await _channel.invokeMethod('setPage', <String, dynamic>{'page': page});
  return isSet;
}