Reowork Ts prose and add Dart prose/code + Updates to docs and example code (Starting point for Dart code was taken from #1171.)
		
			
				
	
	
		
			9 lines
		
	
	
		
			118 B
		
	
	
	
		
			Dart
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			118 B
		
	
	
	
		
			Dart
		
	
	
		
			Executable File
		
	
	
	
	
class Hero {
 | 
						|
  bool active = false;
 | 
						|
 | 
						|
  final String name;
 | 
						|
  final List<String> team;
 | 
						|
 | 
						|
  Hero(this.name, this.team);
 | 
						|
}
 |