在聚合物行为中调用 super.attached() 时如何避免警告

How to avoid warnings when calling super.attached() in polymer behavior

我发现我需要在聚合物行为中调用 super.attached()documentation 对此保持沉默)。当我这样做时,WebStorm 向我显示警告 method 'attached' is not defined in superclass。我的行为仅实现 PolymerBase 但生命周期回调未在此处定义。如何避免警告?

attached()来自dart:html中的Elementclass,只需将其添加到implements子句即可。