Answers for "flutter stream stop listen"

0

flutter stream stop listen

// Pre-declare variable (can't be final, though).
StreamSubscription<Map<PlaceParam, dynamic>> subscription;
subscription = stream.listen((event) {
  .... subscription.cancel();
});
Posted by: Guest on August-06-2020

Browse Popular Code Answers by Language