addMultiSenderProfile static method

Future<void> addMultiSenderProfile(
  1. String subjectId,
  2. int type,
  3. String profileId
)

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

Implementation

static Future<void> addMultiSenderProfile(
  String subjectId,
  int type,
  String profileId,
) async {
  return await _methodChannel.invokeMethod(
    'addMultiSenderProfile',
    <String, dynamic>{
      'subjectId': subjectId,
      'type': type,
      'profileId': profileId,
    },
  );
}