setMtxPlatform method

Future<void> setMtxPlatform(
  1. String platform
)

set vbucks platform

Implementation

Future<void> setMtxPlatform(String platform) async {
  if (platform == currentMtxPlatform) return;

  return await client.send(
    method: "POST",
    url: MCP(
      FortniteProfile.common_core,
      accountId: client.accountId,
    ).SetMtxPlatform,
    body: {
      "newPlatform": platform,
    },
  );
}