2015-12-05 18:35:03 -07:00
|
|
|
class Hero {
|
|
|
|
static int _nextId = 1;
|
2016-07-01 08:44:28 -07:00
|
|
|
final int id;
|
|
|
|
String name, power;
|
2015-12-05 18:35:03 -07:00
|
|
|
|
2016-07-01 08:44:28 -07:00
|
|
|
Hero(this.name, [this.power = '']) : id = _nextId++;
|
2015-12-05 18:35:03 -07:00
|
|
|
}
|