Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'set_sections_action.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 1 : _$_SetSectionsAction _$$_SetSectionsActionFromJson(Map<String, dynamic> json) =>
10 1 : _$_SetSectionsAction(
11 2 : list: IList<SectionModel>.fromJson(json['list'],
12 2 : (value) => SectionModel.fromJson(value as Map<String, dynamic>)),
13 : );
14 :
15 1 : Map<String, dynamic> _$$_SetSectionsActionToJson(
16 : _$_SetSectionsAction instance) =>
17 1 : <String, dynamic>{
18 2 : 'list': instance.list.toJson(
19 2 : (value) => value.toJson(),
20 : ),
21 : };
|