launchError property

String launchError

Getter for _launchError. Leads to UnsupportedError on Android.

Implementation

String get launchError {
  if (Platform.isIOS) {
    return _launchError;
  }
  throw UnsupportedError(
      'The attribute launchError is not available on Android');
}