Last updated:
0 purchases
nls
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);
}
});
}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.