mirror of
				https://github.com/Nioux/AideDeJeu.git
				synced 2025-10-30 23:16:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // GENERATED CODE - DO NOT MODIFY BY HAND
 | |
| 
 | |
| part of 'test.dart';
 | |
| 
 | |
| // **************************************************************************
 | |
| // JsonSerializableGenerator
 | |
| // **************************************************************************
 | |
| 
 | |
| Test _$TestFromJson(Map<String, dynamic> json) {
 | |
|   return Test()
 | |
|     ..id = json['id'] as String
 | |
|     ..rootId = json['rootId'] as String
 | |
|     ..parentLink = json['parentLink'] as String
 | |
|     ..name = json['name'] as String;
 | |
| }
 | |
| 
 | |
| Map<String, dynamic> _$TestToJson(Test instance) => <String, dynamic>{
 | |
|       'id': instance.id,
 | |
|       'rootId': instance.rootId,
 | |
|       'parentLink': instance.parentLink,
 | |
|       'name': instance.name,
 | |
|     };
 | 
