launchAuthUrl method

Future<void> launchAuthUrl({
  1. required Uri authUrl,
})

Implementation

Future<void> launchAuthUrl({required Uri authUrl}) async {
  if (await canLaunchUrl(authUrl)) {
    await launchUrl(authUrl, mode: LaunchMode.externalApplication);
  }
}