试图使用库中的条形码扫描仪扫描代码,并将其放入对象中。
class _abc extends State<abc>{
String barcode = "";
Future myfunction() async {
try {
String barcode = await BarcodeScanner.scan();
await new Future.delayed(new Duration(milliseconds: 100));
this.barcode = barcode;
selectedChoice.setters=barcode;
setState((){}); //refresh
}
}
}
只有这部分代码无法识别。