deleteMultiSenderProfile static method

Future<void> deleteMultiSenderProfile(
  1. String subjectId,
  2. String profileId
)

Deletes the relationships between the user and apps on the device in the multi-sender scenario.

Implementation

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