moveToFirst method

Future<bool> moveToFirst()

Implementation

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