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',
    <String, String>{
      'profileId': profileId,
    },
  );
}