convertPlatformException function
Never
convertPlatformException(
- dynamic e
Implementation
Never convertPlatformException(dynamic e) {
if (e is PlatformException) {
throw _platformExceptionDetailsToDart(e.code, e.message, e.details as String?);
} else {
throw e;
}
}