goRight method

Future<void> goRight({
  1. bool animated = true,
})

Go to the next page.

Implementation

Future<void> goRight({final bool animated = true}) {
  R2Log.d('$name: $animated');
  return _invokeMethod(_ReaderChannelMethodInvoke.goRight, animated);
}