showRankingIntent static method
Opens the page for a specified leaderboard in a specified time frame.
Implementation
static Future<void> showRankingIntent(
String rankingId, {
int? timeDimension,
}) async {
_channel.invokeMethod(
'RankingsClient.getRankingIntent',
removeNulls(
<String, dynamic>{
'rankingId': rankingId,
'timeDimension': timeDimension,
},
),
);
}