Kathy Walrath 3d87360432 docs(template-syntax): get closer to a Dart version of template-syntax
Add doc regions to the TS version.
Update the Dart sample.
Publish a hidden draft of the Dart version.

Closes .
2016-02-09 20:49:49 -08:00

35 lines
797 B
Dart

// #docregion
class Hero {
static int _nextId = 1;
int id;
String firstName;
String lastName;
DateTime birthdate;
String url;
int rate = 100;
Hero(this.firstName, {this.lastName, this.birthdate, this.url, this.rate}) {
id = _nextId++;
}
static List<Hero> MockHeroes = [
new Hero('Hercules',
lastName: 'Son of Zeus',
birthdate: new DateTime(1970, 2, 25),
url: 'http://www.imdb.com/title/tt0065832/',
rate: 325),
new Hero('eenie', lastName: 'toe'),
new Hero('Meanie', lastName: 'Toe'),
new Hero('Miny', lastName: 'Toe'),
new Hero('Moe', lastName: 'Toe')
];
String get fullName {
if (lastName == null) return firstName;
return '$firstName $lastName';
}
String toString() => '$fullName (rate: $rate)';
}