setSupportedCreator method

Future<void> setSupportedCreator(
  1. String newCreator
)

change currently supported creator by the profile.

Implementation

Future<void> setSupportedCreator(String newCreator) async {
  confirmInitialized();

  return await client.send(
    method: "POST",
    url: MCP(
      FortniteProfile.common_core,
      accountId: client.accountId,
    ).SetAffiliateName,
    body: {
      "affiliateName": newCreator,
    },
  );
}