mirror of
				https://gitlab.com/veilid/veilidchat.git
				synced 2025-10-31 06:08:54 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			575 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			575 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // GENERATED CODE - DO NOT MODIFY BY HAND
 | |
| 
 | |
| part of 'router_cubit.dart';
 | |
| 
 | |
| // **************************************************************************
 | |
| // JsonSerializableGenerator
 | |
| // **************************************************************************
 | |
| 
 | |
| _$RouterStateImpl _$$RouterStateImplFromJson(Map<String, dynamic> json) =>
 | |
|     _$RouterStateImpl(
 | |
|       hasAnyAccount: json['has_any_account'] as bool,
 | |
|     );
 | |
| 
 | |
| Map<String, dynamic> _$$RouterStateImplToJson(_$RouterStateImpl instance) =>
 | |
|     <String, dynamic>{
 | |
|       'has_any_account': instance.hasAnyAccount,
 | |
|     };
 | 
