UrlLauncherException constructor

const UrlLauncherException(
  1. String message, {
  2. String? recoverySuggestion,
  3. Object? underlyingException,
})

Thrown when the requested operation did not complete because a URL could not be launched, typically because of an error spawning an external process.

Implementation

const UrlLauncherException(
  super.message, {
  super.recoverySuggestion,
  super.underlyingException,
});