subscribeToDetection method
StreamSubscription<SocialContentDetection>
subscribeToDetection(
- dynamic listener(
- SocialContentDetection detected
Implementation
StreamSubscription<SocialContentDetection> subscribeToDetection(Function(SocialContentDetection detected) listener){
return _detectionStream.stream.listen(listener);
}