setPage method
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;
}