launchError property
String?
get
launchError
Getter for _launchError
. Leads to UnsupportedError on Android.
Implementation
String? get launchError {
if (io.Platform.isIOS) {
return _launchError;
}
throw UnsupportedError(
'The attribute launchError is not available on Android');
}