exchangeCodeForToken method
Exchange authorization code for token
Implementation
Future<Map<Object?, Object?>?> exchangeCodeForToken({
required String tenantId,
required String clientId,
String? clientSecret,
required String code,
required String redirectUrl,
String? scope,
}) {
return MsAuthenticatePlatform.instance.exchangeCodeForToken(
tenantId: tenantId,
clientId: clientId,
clientSecret: clientSecret,
code: code,
redirectUrl: redirectUrl,
scope: scope,
);
}