suspend method

Future<void> suspend(
  1. int playerId
)

Pauses the player when the application is sent to the background.

Implementation

Future<void> suspend(int playerId) {
  throw UnimplementedError('suspend() has not been implemented.');
}