Patrice Chalin ef66e38e54 docs(dev guide): Update 'Component Styles' prose (#1320)
Reowork Ts prose and add Dart prose/code

+ Updates to docs and example code

(Starting point for Dart code was taken from #1171.)
2016-05-10 08:51:23 +01:00

9 lines
118 B
Dart
Executable File

class Hero {
bool active = false;
final String name;
final List<String> team;
Hero(this.name, this.team);
}