You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			21 lines
		
	
	
		
			467 B
		
	
	
	
		
			Dart
		
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			467 B
		
	
	
	
		
			Dart
		
	
| 
								 
											4 months ago
										 
									 | 
							
								class CountriesLists {
							 | 
						||
| 
								 | 
							
								  String? iD;
							 | 
						||
| 
								 | 
							
								  String? name;
							 | 
						||
| 
								 | 
							
								  dynamic nameN;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  CountriesLists({this.iD, this.name, this.nameN});
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  CountriesLists.fromJson(Map<String, dynamic> json) {
							 | 
						||
| 
								 | 
							
								    iD = json['ID'];
							 | 
						||
| 
								 | 
							
								    name = json['Name'];
							 | 
						||
| 
								 | 
							
								    nameN = json['NameN'];
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  Map<String, dynamic> toJson() {
							 | 
						||
| 
								 | 
							
								    final Map<String, dynamic> data = new Map<String, dynamic>();
							 | 
						||
| 
								 | 
							
								    data['ID'] = this.iD;
							 | 
						||
| 
								 | 
							
								    data['Name'] = this.name;
							 | 
						||
| 
								 | 
							
								    data['NameN'] = this.nameN;
							 | 
						||
| 
								 | 
							
								    return data;
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 |