getCachePlayerId static method

Future<String> getCachePlayerId()

Obtains the locally cached player ID of the current player.

Implementation

static Future<String> getCachePlayerId() async {
  return await _channel.invokeMethod(
    'PlayersClient.getCachePlayerId',
  );
}