goBackward method

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

Go to the previous page.

Implementation

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