Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'select_adventure_node_action.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 0 : _$_SelectAdventureNodeAction _$$_SelectAdventureNodeActionFromJson(
10 : Map<String, dynamic> json) =>
11 0 : _$_SelectAdventureNodeAction(
12 : const AdventureNodeConverter()
13 0 : .fromJson(json['selection'] as Map<String, Object?>),
14 : );
15 :
16 0 : Map<String, dynamic> _$$_SelectAdventureNodeActionToJson(
17 : _$_SelectAdventureNodeAction instance) =>
18 0 : <String, dynamic>{
19 0 : 'selection': const AdventureNodeConverter().toJson(instance.selection),
20 : };
|