launchFacebookProfile function

Future<void> launchFacebookProfile(
  1. String profileIdOrUsername
)

Implementation

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