// #docregion import 'package:angular2/core.dart'; import 'hero.dart'; @Component( selector: 'my-app', template: '''

{{title}}

My favorite hero is: {{myHero.name}}

Heroes:

// #docregion message

There are many heroes!

// #enddocregion message ''') class AppComponent { String title = 'Tour of Heroes'; List heroes = [ new Hero(1, 'Windstorm'), new Hero(13, 'Bombasto'), new Hero(15, 'Magneta'), new Hero(20, 'Tornado') ]; Hero get myHero => heroes.first; }