mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-01-26 07:25:55 -05:00
18 lines
575 B
Dart
18 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,
|
||
|
};
|