addProfile static method

Future<void> addProfile(
  1. int type,
  2. String profileId
)

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

Implementation

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