restoreUserWithIdToken static method
Restore an user base on reference_id present in the jwt token
Implementation
static void restoreUserWithIdToken(String token) async {
await _channel.invokeMethod(
'restoreUserWithIdToken',
<String, dynamic>{
'token': token,
},
);
}