这是我尝试过的。
_launchURL() async {
if (await canLaunch("tel://125436512436")) {
await launch("tel://125436512436");
} else {
throw 'Could not launch';
}
}
但是我总是收到同样的异常。我已经导入了url_launcher包,并且同样适用于其他字符串。仅当我尝试输入数字时,我才得到以下异常。
[VERBOSE-2:dart_error.cc(16)] Unhandled exception:
如果我有任何遗漏,请让我知道。