restoreUserWithIdToken method

void restoreUserWithIdToken (
  1. String token
)

Implementation

static void restoreUserWithIdToken(String token) async {
  await _channel.invokeMethod(
    'restoreUserWithIdToken',
    <String, dynamic>{
      'token': token,
    },
  );
}