9 lines
		
	
	
		
			106 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			106 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| 
								 | 
							
								// #docregion
							 | 
						||
| 
								 | 
							
								class Hero {
							 | 
						||
| 
								 | 
							
								  final int id;
							 | 
						||
| 
								 | 
							
								  String name;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  Hero(this.id, this.name);
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								// #enddocregion
							 |