identifyUser method

void identifyUser (
  1. {String externalId,
  2. String restoreId}
)

Implementation

static void identifyUser({String externalId, String restoreId}) {
  _channel.invokeMethod(
    'identifyUser',
    <String, String>{
      'externalId': externalId ?? "",
      'restoreId': restoreId ?? ""
    },
  );
}