getPlayerAccountHistory method

Future<TransactionsResponse> getPlayerAccountHistory(
  1. String playerUid,
  2. PlayMode playMode,
  3. int offset,
  4. int limit,
  5. Config config,
)

Implementation

Future<TransactionsResponse> getPlayerAccountHistory(String playerUid,
    PlayMode playMode, int offset, int limit, Config config) {
  return GameolivePlatform.instance
      .getPlayerAccountHistory(playerUid, playMode, offset, limit, config);
}