restoreUserWithIdToken static method

void restoreUserWithIdToken(
  1. String token
)

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,
    },
  );
}