deleteProfile static method

Future<void> deleteProfile(
  1. String profileId
)

Deletes the relationship between the user and app on the device.

Implementation

static Future<void> deleteProfile(String profileId) async {
  return await methodChannel
      .invokeMethod('deleteProfile', {'profileId': profileId});
}