在Flutter中模仿EventChannel广播

时间:2018-08-28 15:48:50

标签: dart flutter

有没有一种方法可以模仿扑朔迷离的EventChannel广播?像onEmit('some string', eventChannel)...

原因:由于某些开发人员没有实际的设备,我们需要测试条形码扫描仪的输入而不在设备上运行(Linea Infinea X)

如果有帮助,这里是相关代码:

static const EventChannel eventChannel = const EventChannel('package:xpel_count_operations/linea');
...
...
// todo: onEmit('BARCODE', eventChannel);
eventChannel.receiveBroadcastStream().listen(_onEvent, onError: _onError);

0 个答案:

没有答案