loginWithFacebook static method
Facebook OAuth - returns user data without saving
Implementation
static Future<Map<String, dynamic>> loginWithFacebook({
String? accessToken,
String? code,
String? callbackPath,
}) async {
return FacebookProvider.authenticate(
accessToken: accessToken,
code: code,
callbackPath: callbackPath,
clientId: config.facebookClientId,
clientSecret: config.facebookClientSecret,
redirectBase: config.redirectBase,
);
}