collectCollectionBookRewards method

Future<void> collectCollectionBookRewards()

claim pending collection book level rewards

Implementation

Future<void> collectCollectionBookRewards() async {
  await client.post(MCP(FortniteProfile.campaign, accountId: client.accountId)
      .ClaimCollectionBookPageRewards);
  await client.post(MCP(FortniteProfile.campaign, accountId: client.accountId)
      .ClaimCollectionBookRewards);
  return;
}