getPlayerHiResImage static method

Future<String?> getPlayerHiResImage()

Get the player's hi-res profile image as a base64 encoded String.

Implementation

static Future<String?> getPlayerHiResImage() async {
  return (await GamesServicesPlatform.instance.getPlayerHiResImage())
      ?.replaceAll("\n", "");
}