updateProfile static method

Future updateProfile()

Synchronizes the BlueConic profile with the server asynchronously.

This method uploads any local profile changes to the BlueConic servers and downloads the latest profile data. It's useful for ensuring data consistency between the client and server.

Returns a Future<dynamic> that completes when the synchronization is done

Implementation

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