getAccessToken method
Exchange code for access_token, refresh_token and authorized scope
Implementation
@override
Future<String?> getAccessToken({required String code}) async {
return await methodChannel.invokeMethod<String>('getAccessToken', {'code': code});
}