skipToNext method

Future<bool> skipToNext()

Implementation

Future<bool> skipToNext() async {
  try {
    final bool result = await _platform.invokeMethod('skipToNext');
    return result;
  } catch (e) {
    print("Failed to skip to next: $e");
    return false;
  }
}