CampaignProfile constructor

CampaignProfile(
  1. Client client
)

campaign profile object

Implementation

CampaignProfile(Client client)
    : super(
        client,
        FortniteProfile.campaign,
      ) {
  backpack = BackpackProfile(client);
  storage = StorageProfile(client);
  venturesBackpack = VenturesBackpackProfile(client);
}