restore method

Future<void> restore(
  1. int playerId, {
  2. DataSource? dataSource,
  3. int resumeTime = -1,
})

Restores the player state when the application is resumed.

Implementation

Future<void> restore(
  int playerId, {
  DataSource? dataSource,
  int resumeTime = -1,
}) {
  throw UnimplementedError('restore() has not been implemented.');
}