next method

Future<Result> next()

Plays the next song.

If playing only single audio it will restart the current.

Implementation

Future<Result> next() async {
  return ResultMap[await _invokeMethod('next') as int] ?? Result.ERROR;
}