showAchievementListIntent static method

Future<void> showAchievementListIntent()

Obtains the list of all game achievements of the current player.

Implementation

static Future<void> showAchievementListIntent() async {
  return await _channel.invokeMethod(
    'AchievementClient.getShowAchievementListIntent',
  );
}