Angular Dart component events
I am trying to pass custom events from a component to its parent component/controller confirm.html <div class="comfirm-component"> <content></content> <a href="#" ng-click="ctrl.yes()">Yes</a> <a href="#" ng-click="ctrl.no()">No</a> </div> confirm.dart @Component( selector: "confirm-component", templateUrl: 'confirm.html', useShadowDom: false, publishAs: "ctrl" ) class ConfirmComponent { void yes(){ print('yes'); // Fire confirm-yes event } void no(){ print('no'); // Fire confirm-no event } } is there something like this?: <confirm-component on-confirm-yes="doSomething()" on-confirm-no=