setUserWithIdToken method

void setUserWithIdToken (
  1. String token
)

Implementation

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