getBadgesEarnedByPlayer method

Future<List<String>> getBadgesEarnedByPlayer(
  1. String playerUid,
  2. PlayMode playMode, [
  3. Config? config
])

Implementation

Future<List<String>> getBadgesEarnedByPlayer(
    String playerUid, PlayMode playMode,
    [Config? config]) async {
  config ??= CONFIG!;
  return GameolivePlatform.instance
      .getBadgesEarnedByPlayer(playerUid, playMode, config);
}