createProfile static method

Future createProfile()

Creates a new BlueConic profile asynchronously.

This method clears the current profile ID from the local cache and generates a new profile ID. It's useful for creating fresh user sessions.

Returns a Future<dynamic> that completes when the profile is created

Implementation

static Future<dynamic> createProfile() {
  return BlueConicPlatform.instance.createProfile();
}