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