addComment method

void addComment(
  1. String key,
  2. void listener(
    1. Comment node
    )
)

Implementation

void addComment(String key, void Function(Comment node) listener) {
  _forComment.add(_Subscription(listener, _getTimer(key), Zone.current));
}