getPlayerName method

Future<String?> getPlayerName()

Get the player name. On iOS the player alias is the name used by the Player visible in the leaderboard

Implementation

Future<String?> getPlayerName() async {
  return await FirebaseGameServices.platform.getPlayerName();
}