moveToLast method

Future<bool> moveToLast()

Implementation

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