createSessionUsingSocialProvider function
Implementation
Future<CubeSession> createSessionUsingSocialProvider(
String socialProvider, String accessToken,
[String? accessTokenSecret]) {
return CreateSessionQuery.usingSocial(
socialProvider, List.of({accessToken, accessTokenSecret})).perform();
}