moveToPrevious method

Future<bool> moveToPrevious()

Implementation

Future<bool> moveToPrevious() async {
  assert(!_closed);
  final result = await _methodChannel.invokeMethod<bool>('moveToPrevious');
  return result!;
}