convertPlatformException function

Never convertPlatformException(
  1. dynamic e
)

Implementation

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