Shailen Tuli
Results
1
issues of
Shailen Tuli
Assume the following Dart code: ``` @CustomTag('my-element') class MyElement extends PolymerElement { final List colors = toObservable(['red', 'green', 'blue']); MyElement.created() : super.created(); } ``` And the following HTML: ``` .core-selected...