nls 0.0.1 nls: ^0.0.1 copied to clipboard
Scan QR with android
nls #
NLS Scan plugin project.
static const EventChannel _eventChannel = EventChannel('nlsresult'); StreamSubscription? _streamSubscription;
@override void initState() { super.initState(); _streamSubscription = _eventChannel.receiveBroadcastStream().listen((value) { try { print(value); } catch (e, s) { print(e); print(s); } }); }