Patrice Chalin 05864c2584 docs(dependency-injection): revised Dart and TS code and prose (#1573)
docs(dependency-injection): revise Dart and TS code and prose
2016-06-03 11:16:46 -07:00

9 lines
143 B
Dart

// #docregion
class Hero {
final int id;
final String name;
final bool isSecret;
Hero(this.id, this.name, [this.isSecret = false]);
}