goLeft method

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

Go to the previous page.

Implementation

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