initAuth function

Future initAuth({
  1. RequestAuthToken? requestToken,
  2. String? token,
})

Implementation

Future initAuth({RequestAuthToken? requestToken, String? token}) async {
  initCore();
  _initControllerPolledAuth();
  _initController();
  await _initToken(requestToken, token);
}