setAppInviteOneLinkID method

Future<void> setAppInviteOneLinkID(
  1. String oneLinkID,
  2. Function callback
)

Set the OneLink ID that should be used for User-Invite-API. The link that is generated for the user invite will use this OneLink ID as the base link ID

Implementation

Future<void> setAppInviteOneLinkID(
    String oneLinkID, Function callback) async {
  startListening(
      callback as void Function(dynamic), "setAppInviteOneLinkIDCallback");
  await _methodChannel.invokeMethod("setAppInviteOneLinkID", {
    'oneLinkID': oneLinkID,
  });
}