goForward method

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

Go to the next page.

Implementation

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