matches 抽象方法

Stream<T> matches(
  1. String selector
)

返回一个流,只有当特定事件在匹配指定CSS选择器的元素上触发时才会触发。

这是Dart对jQuery的delegate的等价物。

实现

Stream<T> matches(String selector);