launchUrlFromUri method

  1. @Deprecated("Will be removed")
Future<void> launchUrlFromUri(
  1. Uri uri
)

Implementation

@Deprecated("Will be removed")
Future<void> launchUrlFromUri(Uri uri) async {
  //if (!await launchUrl(uri, mode: LaunchMode.externalNonBrowserApplication)) {
    throw Exception('Could not launch $uri, use url_launcher on you own project');
  //}
}