previous method

Future<Result> previous()

Plays the previous song.

If playing only single audio it will restart the current.

Implementation

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