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