launchFacebookProfile function
Implementation
Future<void> launchFacebookProfile(String profileIdOrUsername) async {
final appUrl = 'fb://profile/$profileIdOrUsername';
final webUrl = 'https://facebook.com/$profileIdOrUsername';
await _launchWithFallback(appUrl, webUrl);
}